mirror of
https://github.com/HERDAC/SmartLightBLE.git
synced 2024-11-24 18:43:28 +00:00
11 lines
189 B
C
11 lines
189 B
C
|
#ifndef LEDS_H_INCLUDED
|
||
|
#define LEDS_H_INCLUDED
|
||
|
#define LED_NOMBRE 47
|
||
|
#define LED_PIN 22
|
||
|
|
||
|
void setup_led();
|
||
|
void LEDoff();
|
||
|
void LEDon(int puissance, int r, int g, int b);
|
||
|
|
||
|
#endif
|