Skip to main content

Questions tagged [json]

Filter by
Sorted by
Tagged with
1 vote
1 answer
96 views

I have a project (Digital Dashboard for a Motorhome) in Pi that reads JSON data from an Arduino board and sends it via Serial. The Pi gets the JSON data, makes some adjustments and then sends it to an ...
Honeybadger22's user avatar
0 votes
1 answer
115 views

I am running a project where I have multiple ESP32s communicate over WebSockets and I am using the Arduino IDE 2.3.4 for it. The communication primarily uses JSON and sends it as strings. To work with ...
Joel's user avatar
  • 103
0 votes
1 answer
196 views

Hey all I have a sketch that takes up 99% of my storage space since I am using a Arduino Nano. Although everything in my code fits as-is, there seems to be an issue with me sending a json string over ...
StealthRT's user avatar
  • 259
1 vote
2 answers
567 views

I'm trying to parse the JSON string from the National Weather Service Alerts and am encountering a problem where the code can't parse the value and the device auto-resets. I've used this code before ...
user3481929's user avatar
1 vote
1 answer
862 views

I'm utilizing this json library: https://arduinojson.org/ I am attempting to write a function that creates a response object, and wraps an already built json document: void sendResponse( ...
Snappawapa's user avatar
1 vote
0 answers
67 views

The setup includes an WEMOS/ESP8266 R1 mini compatible board, a DHT11, a photo resistor and a magnetic reed. The libs used are: #include <ESP8266WiFi.h> #include <PubSubClient.h> #include &...
thermike's user avatar
-1 votes
1 answer
771 views

I have a vector which consist of a struct, see below: struct FileInformation { String name; size_t filesize; }; std::vector<FileInformation> FileInformations; How do I get JSON ...
test's user avatar
  • 11
0 votes
2 answers
989 views

Parameter file containing MQTT topics as shown below, is read into StaticJsonDocument<1250> DOC variable. Size of some groups may differ between MCU's, for example sub_topics_win may contain ...
guyd's user avatar
  • 1,049
0 votes
1 answer
401 views

I'm trying to effectively allocate a doc's size, based on the size of the file saved in flash of ESP8266. Is there a way? For example: file.size() X 1.5
guyd's user avatar
  • 1,049
-1 votes
1 answer
1k views

I want to communicate two (2) ESP32's via Json commands using ESPAsyncWeb.h. The master should have specific operations to execute and respond to the client, and the client should be able to send ...
Ed Zamper's user avatar
1 vote
1 answer
1k views

How to convert JSON String for example {"f0":100,"f1":100,"f2":100} It is what I get from my esp01 side from I2C communication Now I want it to get it back to my Arduino ...
Avon97's user avatar
  • 161
2 votes
2 answers
312 views

I am trying to retrieve JSON mqtt message I received in ESP32. void mqttMsgCallback(char* topic, byte* payload, unsigned int length) { payload[length] = '\0'; String _message = String((char*)...
Abhishek bhatia's user avatar
1 vote
1 answer
838 views

So I have been recently been trying to create a library for Arduino to encode and decode JSON Web tokens(JWT) using HMAC-SHA256. For those unfamiliar, JWT has 3 parts - The header, body and signature....
Flight64's user avatar
1 vote
1 answer
628 views

I've read that the Arduino String is bad as it causes memory fragmentation, so I try to avoid them mostly. But I still have some occurences where I'm not quite sure if they are ok after all. The first ...
matthesinator's user avatar
3 votes
1 answer
7k views

I'm new to Arduino and I'm building a project that fetches data from a website (using ESP8266) and then transfers them to my Arduino UNO via serial port. Data coming from ESP8266 every 20s - [{"x&...
krystof18's user avatar
  • 315
1 vote
0 answers
75 views

I'm trying to add a new item "index" to GUI-elements that are created by using ArduinoJSON and the Vue.js-framework inside the ESP-Dash-library. The library creates GUI-elements like buttons,...
StefanL38's user avatar
1 vote
0 answers
109 views

Sorry I am new with this. I am trying to read a JSON response from my website using an ESP8266, but it keeps failing. I am using the following code: WiFiClientSecure httpsClient; //Declare object ...
Dan's user avatar
  • 19
3 votes
2 answers
288 views

I am trying to figure out how ArduinoJson capacity can be calculated, therefore I came by the Assistant web application developed by the developer of the library https://arduinojson.org/v6/assistant/ ...
Mohammed Noureldin's user avatar
2 votes
1 answer
188 views

I have a function that reads an RFID card and returns the RFID string. The function reads the string well but I am using the ArduinoJson library to generate JSON. This is the function that I am using ...
Enver Pasha's user avatar
2 votes
0 answers
3k views

I'm fairly new to Arduino so I used a sample code before integrating this into my main code. I'm printing my value in a JSON format over serial. My Arduino outputs this and the python receives this ...
Mike's user avatar
  • 21
1 vote
1 answer
401 views

hello I am just trying to make Youtube Subscribe Counter with led matrix 32*8 and esp 32 and I had this problem when I trying to get subscribers to count so what is the problem and how I can fix it? `...
 abdalrahmanabs's user avatar
0 votes
1 answer
3k views

I am working on a smart IR receiver that reads an IR signal, decodes it and saves that decoded info in a json file stored on the NodeMCU's SPIFFS. This info is then displayed on the embedded web ...
Mo'men Alaswad's user avatar
1 vote
1 answer
533 views

Why is the server side of php not loading any data from arduino? What did I do wrong? String reading="{\"latitude\": 12.983027, \"longitude\": 80.2594}"; mySerial.println("AT+HTTPINIT"); ...
wgerro's user avatar
  • 51
2 votes
1 answer
273 views

void toSerial(int delay_ms) { delay(delay_ms); while(mySerial.available()) { Serial.write(mySerial.read()); } } Serial.begin(9600); mySerial.begin(9600); mySerial....
wgerro's user avatar
  • 51
1 vote
2 answers
669 views

I'm using ArduinoJson to parse a file full of JSON strings that contain the SSID and password for the registered networks. I have a little web interface that runs in soft AP mode so you can scan for ...
CurieOS's user avatar
  • 21