Skip to content

Commit

Permalink
json handler added
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnymalina committed Apr 18, 2024
1 parent e38ee83 commit 1e6ceee
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ lib_deps =
knolleary/PubSubClient@^2.8
sandeepmistry/LoRa@^0.8.0
ayushsharma82/WebSerial@^1.4.0
bblanchon/ArduinoJson@^6.21.3
5 changes: 5 additions & 0 deletions src/JsonHandler.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <JsonHandler.h>

JsonHandler::JsonHandler()
{
}
18 changes: 18 additions & 0 deletions src/JsonHandler.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#ifndef JSON_HANDLER_H
#define JSON_HANDLER_H

#include <ArduinoJson.h>
#include <DebugMonitor.h>

class JsonHandler
{

public:
JsonHandler();
void serialize();
void deserialize();

private:
};

#endif

0 comments on commit 1e6ceee

Please sign in to comment.