Hi, I'm first time here. I'm new to IoT and I tried some IoT platforms like thingspeak and adafruit. Now I want to create my own IoT dashboard in my website .
Does anybody have a good idea or experience on this ?
Hi, I'm first time here. I'm new to IoT and I tried some IoT platforms like thingspeak and adafruit. Now I want to create my own IoT dashboard in my website .
Does anybody have a good idea or experience on this ?
Thank You.........
Hi,
I have tried some websites like io.adafruit.com,thingspeak.com with my RPi3 and now I have a desire to create a website like that.
So basically you want to learn how to make a web-page to view data which is on your RPi3.
I think the previous suggestion about using Node-Red (https://nodered.org/ ) would be a very good way to do it.
If you really want to build a one-off then worth searching online for things like "How To Host A Website With Raspberry Pi". This will allow you to get started.
Now, it's difficult to understand how much you know / don't know. So apologies if this is rehashing stuff you already know. If you have sensors attached to the RPi3 you will use something like Python to read those values. The values are now in runtime memory. You can decide to store that data somewhere so that it persists. Now a web-page will then need to somehow get hold of that data for you to see it. If the webpage is simply displaying a snapshot of the data then this is referred to as a static web-page. If you are wanting to see that data updating on the webpage (like thingspeak) then this is called a dynamic web-page. This is where MVC architecture and scripting languages like Javascript have a role to play.
Buttons and charts etc. are typically created through a mixture of CSS (styling) and Javascripting. It is worth looking at stuff like:
Here is a generic tutorial (would need to adapt to fit RPI): Tutorial: A Node-RED dashboard using node-red-dashboard | Sensetecnic Developer
Thank You....