31 lines
900 B
C
31 lines
900 B
C
|
|
|
|
/*
|
|
* ----------------------------------------------------------------------------
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
* <struppi@struppi.name> 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 <avr/io.h>
|
|
#include <stdint.h>
|
|
|
|
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);
|
|
void led1642gw_flush_config(void);
|
|
void led1642gw_set_gain(uint8_t gain);
|
|
void led1642gw_set_current_mode(uint8_t mode);
|
|
|
|
#endif // LED1642GW_H_
|