#ifndef UTILS_H
#define UTILS_H
#include <Arduino.h>
#define FIRMWARE_VERSION 1
void floatToBytes(float val, uint8_t *bytes);
float bytesToFloat(uint8_t *bytes);
#endif