IuryNogueira/myreef

View on GitHub
hardware/TheReefEmbedded/include/http_server/HttpServerBuoy.h

Summary

Maintainability
Test Coverage
#ifndef HTTP_SERVER_BUOY_H
#define HTTP_SERVER_BUOY_H
 
#include <http_server/HttpServerBase.h>
 
class HttpServerBuoy: public HttpServerBase {
private:
String _buoyId;
 
public:
HttpServerBuoy(String host, String secretKey, String buoyId, String path);
void sendBuoyActive();
void sendBuoyInactive();
};
 
#endif