aboutsummaryrefslogtreecommitdiff
path: root/_posts/2017-08-11-simple-iot-application.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2018-08-06 13:52:44 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2018-08-06 13:52:44 +0200
commitbd6440d86192e714b285f71001d4e090f36676d0 (patch)
tree5c94e39decce8c17071afcb21cde7d543b05d770 /_posts/2017-08-11-simple-iot-application.md
parent745c016dd5970b6e0e3365e3a835f12ba3db1c82 (diff)
downloadmitjafelicijan.com-bd6440d86192e714b285f71001d4e090f36676d0.tar.gz
update
Diffstat (limited to '_posts/2017-08-11-simple-iot-application.md')
-rw-r--r--_posts/2017-08-11-simple-iot-application.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/_posts/2017-08-11-simple-iot-application.md b/_posts/2017-08-11-simple-iot-application.md
index f2bcabc..5774b66 100644
--- a/_posts/2017-08-11-simple-iot-application.md
+++ b/_posts/2017-08-11-simple-iot-application.md
@@ -4,6 +4,19 @@ title: Simple IOT application supported by real-time monitoring and data history
4description: Develop simple IOT application with Arduino MKR1000 and Python 4description: Develop simple IOT application with Arduino MKR1000 and Python
5--- 5---
6 6
7**Table of content**
8
9- [Initial thoughts](#initial-thoughts)
10- [Simple Python API](#simple-python-api)
11 - [Basic web application](#basic-web-application)
12 - [Web application security](#web-application-security)
13 - [Simple API for writing data-points](#simple-api-for-writing-data-points)
14- [Sending data to API with Arduino MKR1000](#sending-data-to-api-with-arduino-mkr1000)
15- [Data visualization](#data-visualization)
16- [Conclusion](#conclusion)
17
18## Initial thoughts
19
7I have been developing these kind of application for the better part of my last 5 years and people keep asking me how to approach developing such application and I will give a try explaining it here. 20I have been developing these kind of application for the better part of my last 5 years and people keep asking me how to approach developing such application and I will give a try explaining it here.
8 21
9IOT applications are really no different than any other kind of applications. We have data that needs to be collected and visualized in some form of tables or charts. The main difference here is that most of the times these data is collected by some kind of device foreign to developer that mainly operates in web domain. But fear not, it's not that different than writing some JavaScript. 22IOT applications are really no different than any other kind of applications. We have data that needs to be collected and visualized in some form of tables or charts. The main difference here is that most of the times these data is collected by some kind of device foreign to developer that mainly operates in web domain. But fear not, it's not that different than writing some JavaScript.