-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·175 lines (144 loc) · 6.38 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>IoT Presentation</title>
<meta name="description" content="IoT with AWSIoT and MongooseOS">
<meta name="author" content="Matias Bastos">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/league.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h1 style="text-transform: none;">IoT with AWSIoT and MongooseOS</h1>
<p>
<small><a href="https://www.linkedin.com/in/matiasbastos/">Matias Bastos</a></small>
</p>
</section>
<section style='font-size: 24px;'>
<section data-markdown>
## Microcontrollers
- Is a full computer in a chip.

</section>
<section data-markdown>
## Atmel AVR 8 Bit: ATMega 328 Arduino

<small>
- CPU type 8-bit AVR
- Performance 20 MIPS at 20 MHz
- Flash memory 32 kB
- SRAM 2 kB
- EEPROM 1 kB
- Maximum I/O pins 23
- €12,19 (original)
</small>
</section>
<section data-markdown>
## Espressif ESP8266 - Low power and wifi microcontroller

- 32-bit @ 160MHZ Tensilica Processor
- 32 KiB instruction, 80 KiB user data
- Flash QSPI - 512 KB a 4 MB
- 802.11 b/g/n Wi-Fi
- 12 IO pins: SDIO 2.0, (H) SPI, UART, I2C, I2S, IRDA, PWM, GPIO
- €1.70
</section>
<section data-markdown>
## Espressif ESP32 - Hight performance with dual core wifi and bluetooth

- CPU: Xtensa dual-core 32-bit LX6 microprocessor, operating at 160 or 240 MHz
- Memory: 520 KiB SRAM, Flash 16MB
- Wi-Fi: 802.11 b/g/n and Bluetooth: v4.2 BR/EDR and BLE
- 12-bit SAR ADC up to 18 channels - 2 × 8-bit DACs
- Flash encryption and cryptographic hardware acceleration: AES, SHA-2, RSA, ECC, RNG
- €3.60
</section>
</section>
<section style='font-size: 24px;'>
<section data-markdown>
## Microcontroller OS
- Arduino Framework
- FreeRTOS
- MongooseOS
</section>
<section data-markdown>
## MongooseOS

- Simple setup, flashing and IDE
- mJS and C++
- TCP, UDP, HTTP, Websocket, MQTT, CoAP, DNS, mDNS, SNTP, both client and server
- RDP over UART, HTTP, Websocket, MQTT transports
- Native AWS IoT integration and Google IoT Core integration
- Over-the-air (OTA) updates
- Remote device management
</section>
<section data-markdown>
## Demo time!
- Blink
- RPC
- Dashboard
</section>
</section>
<section style='font-size: 24px;'>
<section data-markdown>
## Cloud Infraestructure
- RestAPI
- WebSockets
- MQTT (Message Queue Telemetry Transport)
- AWS IoT Core
</section>
<section data-markdown>
## AWS IoT

</section>
<section data-markdown>
## Demo time!
- Mongoose+AWS setup
- RedButton
- Rules Engine
</section>
</section>
<section style="text-align: center;">
<h2>Questions?</h2>
<p>
<img src="iotmeme.jpg" alt="iotmeme" height="500px">
</p>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/search/search.js', async: true },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>