formatted init commit

This commit is contained in:
Hendrik Rauh 2024-10-17 20:20:17 +02:00
parent b1454a5c5f
commit 45019c6e4c
8 changed files with 130 additions and 119 deletions

View file

@ -19,12 +19,11 @@
// ---- Methods ----
class DMXESPSerial {
public:
void init();
uint8_t read(int Channel);
void write(int channel, uint8_t value);
void update();
void end();
public:
void init();
uint8_t read(int Channel);
void write(int channel, uint8_t value);void update();
void end();
};
#endif