Library implementing the RBController protocol by RoboticsBrno.
Language:
C++
Created:
06.07.2018
Updated:
09.07.2024
Stars:
0
Visit on GitHub
A library faciliating communication with RbController Android app: https://play.google.com/store/apps/details?id=com.tassadar.rbcontroller
#include <esp_log.h>
#include <lwip/sockets.h>
#include <string.h>
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <esp_system.h>
#include "rbprotocol.h"
#include "rbwebserver.h"
void onPktReceived(const std::string& command, rbjson::Object *pkt) {
if(command == "joy") {
printf("Joy: ");
rbjson::Array *data = pkt->getArray("data");
for(size_t i = 0; i < data->size(); ++i) {
rbjson::Object *ax = data->getObject(i);
printf("#%d %6lld %6lld | ", i, ax->getInt("x"), ax->getInt("y"));
}
printf("\r");
} else if(command == "fire") {
printf("\n\nFIRE THE MISSILESS\n\n");
}
}
extern "C" void app_main() {
// Create web server, serves static files from the spiffs memory
rb_web_start(80);
rb::Protocol prot("Foo", "Bar", "The very best bar", &onPktReceived);
prot.start();
printf("Hello world!\n");
int i = 0;
while(true) {
vTaskDelay(1000 / portTICK_PERIOD_MS);
if(prot.is_possessed()) {
prot.send_log("Tick #%d\n", i++);
}
}
}