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
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.
IoT platform means I want to display the sensor readings(graph) in my website and display the controls like switches in my website.