Previously, I played with AutoTools pie charts and I created an SSID logger. A pie chart that shows you which WiFi you are connected to most. It’s working neatly, and you can read more about it here. It uses AutoTools web screens, a name which can be slightly misleading as these screens are not available on the web. It’s time to fix it and mirror that information to my NodeRED server. I’m going to display the same information as a NodeRED pie chart.
NodeRED pie chart
You will need the Tasker project to get the information about the SSIDs. If you just want to learn how to feed data to pie charts you can skip that part. To display the NodeRED pie char I’m going to use NodeRED dashboard:
sudo npm install node-red-dashboard
To feed the pie chart correctly, I need two pieces of information:
- msg.topic (data type)
- msg.payload (value)
To receive data from tasker, I’m using HTTP request node. It’s the easiest way of submitting the information as I can pass the data in JSON format. Something that makes the data handling much easier.
Each data set is submitted as:
msg : Object payload: object ssid: "FastBerry" time: "1304"
This way I can easily assign the payload and topic using a function node:
var time = msg.payload.time; var ssid = msg.payload.ssid; msg.topic = ssid; msg.payload = time; return msg;
Once payload and topic have been formatted correctly, I can submit the message object to the pie chart node.
Feeding NodeRED pie chart from Tasker
To send the information to NodeRED pie chart there are few things we have to take care of. First I’m going to set a %counter to 1 which I’m going to increment by 1 in a loop.
In the FOR loop, I want to strip the ” ” from the SSID names as they will interfere with the JSON structure later. The value is then paired with the %time and processed via HTTP POST as a pair of:
Path:/ssidpie Data / File: ssid=%data time=%time
Each SSID time and name will be sent as a single web request. You could create an array at this point and send it all at once, but there won’t be many of entries here and it’s easier to assign that information in the NodeRED.
Conclusion
As you can see – this is fairly simple. You can post any data this way from Tasker to NodeRED and display it as a graph or a pie chart. NodeRED pie charts can be very useful, and unlike the AutoTools counterparts, are accessible through a web browser.
Project Download
Download project files here. Bear in mind that Patreon supporters have early access to project files and videos.