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 ?
I would use something like NODE-RED for the dashboard, it will also manage your workflows etc. Use smaller less complex devices for the edge (ESP8266, Arduino YUN, etc)
Node Red has a dashboard capability and can also integrate to a huge number of remote peripherals with ease
See some of my posts here https://www.youtube.com/results?search_query=node+red+thebreadboardca , along with many others
I want to create a own IoT platform for me.
Please give some ideas related to it
I want to create a own IoT platform for me.
Please give some ideas related to it
What do you mean by "a own IOT platform", please explain in more detail
Creating a platform is simply a mechanism to accept incoming messages, translate what they mean and store the result. Then you will want to have means to view the results in a meaningful and user friendly way.
So to do this requires the right infrastructure. If you want a platform but don't want to own the hardware, like computer servers, then something like AWS would do the trick as they have all the building blocks available. If, as you say, you want to create the platform on own infrastructure, such as RPI, then a LAMP install, for example, would suffice to get you building the application. With a default LAMP config you will then be constrained to using http as your communication protocol. If you want more options, such as using MQTT as your communication layer, then look at installing a server config which includes nodejs.
If it's just widgets you're after, like those seen on io.adafruit dashboard, for web interface then it's a case of searching online for the right JavaScript library. Tying the front end with the data then requires use of MVC architecture and framework like AngularJS or using Ajax.
IoT platform means I want to display the sensor readings(graph) in my website and display the controls like switches in my website.
Thanks a lot!!!
But I want more clear ideas about IoT platform .
Hi Ganesh,
I think you need to better explain what you mean by IoT platform.
Reviewing the responses I believe that I and the others are having a difficult time understanding what you want to do.
If you can take some time and define your terms and your objectives, then we can provide you with more specific ideas.
As it is, your request is just too broad for use to provide you with specific information.
DAB
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....