2023-09-24 18:00:42 +01:00
|
|
|
//
|
|
|
|
// Created by Teo-CD on 24/09/23.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef JIN_BARBAPAPA_COM_H
|
|
|
|
#define JIN_BARBAPAPA_COM_H
|
|
|
|
|
|
|
|
#include <Arduino.h>
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle communication with a connected device and provide convenience
|
|
|
|
* functions for the fixed protocols.
|
|
|
|
*/
|
|
|
|
namespace Com {
|
|
|
|
void sendFigUpdate(int8_t event);
|
2023-10-22 21:16:49 +01:00
|
|
|
void sendComment(const char message[62], ...);
|
2023-09-24 18:00:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif //JIN_BARBAPAPA_COM_H
|