14 lines
189 B
C++
14 lines
189 B
C++
#ifndef LED_BLASTER_H
|
|
#define LED_BLASTER_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
namespace LedBlaster {
|
|
void setup();
|
|
void emit_0();
|
|
void emit_1();
|
|
void emit_byte(uint8_t serial_byte);
|
|
}
|
|
|
|
#endif
|