/* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return. * (c) 2014 Stefan Rupp * ---------------------------------------------------------------------------- */ #ifndef LED1642GW_H_ #define LED1642GW_H_ #include #include void led1642gw_init(void); void led1642gw_turn_all_on(void); void led1642gw_turn_all_off(void); void led1642gw_flush(void); void led1642gw_set_channel(uint8_t channel, uint16_t value); void led1642gw_clear(void); #endif // LED1642GW_H_