From 27425d0329c3056609d64407bf86040d6e0ccce7 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Mon, 24 Sep 2018 16:14:50 +0200 Subject: prototest: Include xdrstream --- src/app/prototest/main.cc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'src/app/prototest/main.cc') diff --git a/src/app/prototest/main.cc b/src/app/prototest/main.cc index c7d0838..8613bea 100644 --- a/src/app/prototest/main.cc +++ b/src/app/prototest/main.cc @@ -2,6 +2,11 @@ #include "driver/gpio.h" #include "driver/stdout.h" #include "lib/ArduinoJson.h" +#include "lib/modernjson/json.h" +#include "object/stdbuf.h" +#include "object/xdrstream.h" + +char buf[128]; void loop(void) { @@ -10,6 +15,30 @@ void loop(void) ArduinoJson::JsonObject& root = jsonBuffer.parseObject(json); const char *sensor = root["sensor"]; kout << "sensor: " << sensor << endl; + + nlohmann::json j = R"({"compact": true, "schema": 0})"_json; + std::vector v_cbor = nlohmann::json::to_cbor(j); + + kout << "CBOR vector is " << hex; + for (unsigned int i = 0; i < v_cbor.size(); i++) { + kout << v_cbor[i] << " "; + } + kout << endl; + + kout << "manual JSON: {\"sensor\":\"gps\",\"time\":" << dec << 1351824120; + kout << ",\"data\":[" << 48.756080 << "," << 2.302038 << "]}" << endl; + + BufferOutput foostream(buf); + + foostream << 123 << 0 << 12345678; + + kout << "foostream is " << hex; + for (unsigned int i = 0; i < 32; i += 4) { + kout << (unsigned char)buf[i] << (unsigned char)buf[i+1]; + kout << (unsigned char)buf[i+2] << (unsigned char)buf[i+3] << " "; + } + kout << endl; + gpio.led_toggle(1); #ifdef TIMER_S kout << dec << uptime.get_s() << endl; -- cgit v1.2.3