8 lines
163 B
C
8 lines
163 B
C
|
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
|
||
|
void floatToBytes(float val, uint8_t *bytes);
|
||
|
void updateStatusLED(bool deviceConnected, int ledPin);
|
||
|
#endif
|