SlideShare una empresa de Scribd logo
1 de 40
Descargar para leer sin conexión
MILAN 20/21.11.2015
Andrea De Gaetano - @dega1999
An adventure with ESP8266 and IOT
MILAN 20/21.11.2015
Andrea De Gaetano
Genova, Italy
My blog: http://pestohacks.blogspot.com
MILAN 20/21.11.2015 - Andrea De Gaetano
“What I have learnt
since I started
playing with ESP8266”
MILAN 20/21.11.2015 - Andrea De Gaetano
• Introduction to ESP8266 hardware
• Getting started: ESP8266 versions, software and hardware
requirements, wirings
• Official firmware, arduino and the EspressIF software
• Alternative firmwares: frankestain, micropython, nodemcu
• The NodeMCU project
• MQTT and Mosquitto
• Visualize data: web client
• Demo project
• Future..
MILAN 20/21.11.2015 - Andrea De Gaetano
HARDWARE
Wifi enabled - Microcontroller 802.11 b/g/n
CPU: 80 Mhz (160 Mhz overclock?)
RAM: 64 kb istruction + 96 kb data
ROM: from 512kb to 4mb
I2C, GPIO, SPI
C++ SDK Available
Cheap! < 7-8€
MILAN 20/21.11.2015 - Andrea De Gaetano
Wifi Capabilities
- Station Mode:
- act as an access point
- Access Point Mode:
- connect to an access point
- issues with password < 8 characters
- Mixed Mode:
- the two mode together
MILAN 20/21.11.2015 - Andrea De Gaetano
What this product is useful for?
Device prototyping
IOT prototyping
Extends your project with wireless support
Simulate a network of devices
Network fuzzer
MILAN 20/21.11.2015 - Andrea De Gaetano
Variants / Revisions
Spoiler: not all the variants are here
MILAN 20/21.11.2015 - Andrea De Gaetano
Tools
Stable 3.3v power
serial terminal: kermit, minicom …
esptool.py: flasher tool
luatool: (nodemcu project only)
USB to serial TTL 3.3v
MILAN 20/21.11.2015 - Andrea De Gaetano
ESP8266-04 Wirings
MILAN 20/21.11.2015 - Andrea De Gaetano
NodeMCU DevKit
• Easy: no solder required
• Less funny
• Price ~15 euro
• Why didn’t I used it?
MILAN 20/21.11.2015 - Andrea De Gaetano
because I burned one… :/
MILAN 20/21.11.2015 - Andrea De Gaetano
When you Power On with official firmware
It creates a wireless network with
a “ESP” prefix …
net packets to /dev/null
A first check “it works!”
Serial speed is 9660 kbps or
115200 kbps
Configurations depends on the
firmware version
Lesson: Flash a well known firmware
MILAN 20/21.11.2015 - Andrea De Gaetano
Flash the firmware
Use their flasher: https://github.com/nodemcu/nodemcu-flasher
• for Windows
• a Multiplatform version with QT: Not available yet
Note for NodeMCU devkit
https://github.com/themadinventor/esptool
python esptool.py -p /dev/tty.usbserial write_flash
0x00000 bin/0x00000.bin 0x10000 bin/0x10000.bin
• /dev/tty.usbserial depends on USB to Serial converter
• Addresses (e.g. 0x00000) depends on firmware, check docs!
MILAN 20/21.11.2015 - Andrea De Gaetano
An Old Friend: AT Commands
The official firmware comes with AT commands support
http://wiki.iteadstudio.com/
ESP8266_Serial_WIFI_Module#AT_Commands
MILAN 20/21.11.2015 - Andrea De Gaetano
(Some) Official Firmware Features
Control Device settings:
• Wireless modes: access point/station mode
• Wireless network name and password (station mode)
• on/off wifi
• …
Send / Receive data over TCP
• client TCP: a rudimental browser
• server TCP: a slow http server
Frustrating experience over terminal
MILAN 20/21.11.2015 - Andrea De Gaetano
EspressIF SDK (the official SDK)
• Released in Oct 2014
• Works under Linux
• Give major control over the device: GPIO, I2C, SPI
• Can Extends AT commands
• Generate firmware
• It’s C++: hard debugging and possible infinite reboot on faulty fw
http://bbs.espressif.com/
MILAN 20/21.11.2015 - Andrea De Gaetano
Alternatives: Arduino’s Way
• Use Arduino IDE modified: https://github.com/esp8266/
arduino
• Write sketch with “Arduino-C”
Or …
• Connect an Arduino with RX/TX and Use AT commands:
because arduino shields for wifi are expensive
PRO: useful to give connectivity to existing arduino projects
Not interested… Never tried…
MILAN 20/21.11.2015 - Andrea De Gaetano
Alternatives: Firmwares
Some months later the community bring us new opensource
firmwares!
• Frankenstein: described as “quick and dirty firmware”. Good
console support.
https://github.com/nekromant/esp8266-frankenstein
• MicroPython: programmable with python. Good for prototyping
https://github.com/micropython/micropython/tree/master/esp8266
• NodeMCU: programmable with LUA, very good API!
https://github.com/nodemcu/nodemcu-firmware
Repeat:All code is opensource!
MILAN 20/21.11.2015 - Andrea De Gaetano
Nodemcu
Program are written with LUA: easy syntax, easy to learn.
Program === Scripts: no need to recompile and flash firmware
Commands testable directly from the terminal
A lot of good and useful api for:
• GPIO
• I2C
• SPI
• MQTT
• File management read/write
• UART
• 1-wire bus
MILAN 20/21.11.2015 - Andrea De Gaetano
Working with NodeMCU
Download a firmware or build a new one
http://frightanic.com/nodemcu-custom-build/
MILAN 20/21.11.2015 - Andrea De Gaetano
A Project with NodeMCU
It’s all started with the idea of building a drone.. but this is another story :)
I decided to test the device on 2 topics I didn’t know:
• MQTT
• I2C
Project Summary:
Use ESP8266 to:
• Sends accelerometer data(x,y,z) coming from an I2C sensor
• Use MQTT
• visualize the data in the browser
MILAN 20/21.11.2015 - Andrea De Gaetano
The accelerometer:ADXL345
It supports:
• I2C
• SPI
Send:
• Raw data
• Recognize gestures: tap, double tap..
• Recognize events: free fall
• …
Problem: no driver for control the device
Solution: Ok, write the driver
MILAN 20/21.11.2015 - Andrea De Gaetano
MILAN 20/21.11.2015 - Andrea De Gaetano
ADXL345 Driver
How I wrote the I2C driver:
• Read about I2C protocol
• Read the data sheet of ADXL345
• Read the Arduino driver/libraries C++ sourcecode(s)
• Find the I2C pin: SDA,SCL (i2c_scanner.lua)
• while (notworking)
• read nodemcu API
• write code
• upload code
• test
• while (somethingIsWorkingButNotYet)
• read documentation again
• change the code
• test
MILAN 20/21.11.2015 - Andrea De Gaetano
ADXL345 Driver’s Code!
It will be available on my github
MILAN 20/21.11.2015 - Andrea De Gaetano
MILAN 20/21.11.2015 - Andrea De Gaetano
MQTT shortly
Used for M2M communication
Used on Facebook messenger
MQ Telemetry Transport is a publish-subscribe based "light weight"
messaging protocol for use on top of the TCP/IP protocol.
It is designed for connections with remote locations where a "small
code footprint" is required or the network bandwidth is limited.
Andy Stanford-Clark and Arlen Nipper of Cirrus Link Solutions
authored the first version of the protocol in 1999.
The specification does not specify the meaning of "small code foot
print" or the meaning of "limited network bandwidth".
MILAN 20/21.11.2015 - Andrea De Gaetano
MQTT shortly
Actors:
- broker: who will “route” messages
- subscriber: who is subscribed to a topic
- publisher: who is producing messages on a topic
MILAN 20/21.11.2015 - Andrea De Gaetano
Mosquitto
Mosquitto is an open source (BSD licensed) message
broker that implements the MQ Telemetry Transport
protocol versions 3.1 and 3.1.1.
It is released with 3 main tools:
mosquitto: the broker
mosquito_pub: the publisher
mosquito_sub: the subscriber
MILAN 20/21.11.2015 - Andrea De Gaetano
MQTT: NodeMCU API
mqtt.Client()
mqtt.client:connect()
mqtt.client:close()
mqtt.client:publish()
mqtt.client:subscribe()
mqtt.client:on()
Great!
MILAN 20/21.11.2015 - Andrea De Gaetano
MQTT: NodeMCU API first tests
Trying some LUA code:
•sample code on the website works >> Great!
•sending multiple messages works >> Great!
•using it with mosquito works >> Great!
•sending more than 100 messages in a loop crash the
firmware; the device reboots >> OH
•messages are slowly sent >> MY
•average frequency of 1msg/sec >> GOD!
Figuring out … Why?
MILAN 20/21.11.2015 - Andrea De Gaetano
Analyzing NodeMCU - MQTT implementation
From stackoverflow
Original thread:
http://stackoverflow.com/questions/33414441/nodemcu-and-esp8266-slow-mqtt-publish/
After reading the C++ sourcecode on github of nodemcu..
I asked on SO what’s the problem with slow messages
MILAN 20/21.11.2015 - Andrea De Gaetano
Compile a NodeMCU Firmware
• The power of source code
• Compile a new firmware is not that hard!! :)
• Patching code is not complicated
• NodeMCU is modular
• Enable debug (print) is useful but, verbose
• Disable unused modules
• There are vagrant images available on github
https://github.com/kmpm/esp8266-vagrant
MILAN 20/21.11.2015 - Andrea De Gaetano
NodeMCU Customized Firmware
Changes:
• F*ck queue for publishing messages
• Messages are published directly
Message order is controlled on subscriber side: if a
message is in incorrect order… bye bye!
Send the message inside a thread means:
No crash… :)
MILAN 20/21.11.2015 - Andrea De Gaetano
MQTT on the browser? WebSocket is the answer!
Nodejs + websocket + mqtt.js
Summary of the algorithm
•Setup ADXL345
•Setup MQTT connection
•Every X ms times
•Read the data from ADXL345
•Publish the data with MQTT
•repeat
MILAN 20/21.11.2015 - Andrea De Gaetano
Future
MILAN 20/21.11.2015 - Andrea De Gaetano
Future:The ESP32
•Faster Wifi (~144 mb/s === streaming!)
•Double Processor: 160 Mhz (because “tciu is megl che uan”)
•More GPIOs
•More ram: 400kb! (Remember:“640kb is enough” B.Gates)
•Bluetooth LE day one (Full Bluetooth support later)
•Not a replacement of ESP8266
•“NodeMCU compatible”.. maybe!
MILAN 20/21.11.2015 - Andrea De Gaetano
Demo Time
MILAN 20/21.11.2015 - SPEAKER’S NAME
Leave your feedback on Joind.in!
https://m.joind.in/event/codemotion-milan-2015
All the code will be on repos here next week:
https://github.com/crazycoder1999/
check my twitter for update:
@dega1999
or my blog

Más contenido relacionado

La actualidad más candente

Introduction to the Arduino
Introduction to the ArduinoIntroduction to the Arduino
Introduction to the Arduino
Wingston
 
Home_Automation_using_NodeMCU.pdf
Home_Automation_using_NodeMCU.pdfHome_Automation_using_NodeMCU.pdf
Home_Automation_using_NodeMCU.pdf
arpitsoni40
 

La actualidad más candente (20)

Building IoT with Arduino Day One
Building IoT with Arduino Day One Building IoT with Arduino Day One
Building IoT with Arduino Day One
 
My presentation raspberry pi
My presentation raspberry piMy presentation raspberry pi
My presentation raspberry pi
 
Arduino Lecture 1 - Introducing the Arduino
Arduino Lecture 1 - Introducing the ArduinoArduino Lecture 1 - Introducing the Arduino
Arduino Lecture 1 - Introducing the Arduino
 
Simple Presentation On Raspberry pi
Simple Presentation On Raspberry piSimple Presentation On Raspberry pi
Simple Presentation On Raspberry pi
 
ARDUINO AND ITS PIN CONFIGURATION
 ARDUINO AND ITS PIN  CONFIGURATION ARDUINO AND ITS PIN  CONFIGURATION
ARDUINO AND ITS PIN CONFIGURATION
 
Arduino Microcontroller
Arduino MicrocontrollerArduino Microcontroller
Arduino Microcontroller
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 
Introduction to the Arduino
Introduction to the ArduinoIntroduction to the Arduino
Introduction to the Arduino
 
Introduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and ProgrammingIntroduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and Programming
 
Arduino presentation
Arduino presentationArduino presentation
Arduino presentation
 
Arduino slides
Arduino slidesArduino slides
Arduino slides
 
Introduction to Arduino Programming
Introduction to Arduino ProgrammingIntroduction to Arduino Programming
Introduction to Arduino Programming
 
NodeMCU ESP8266 workshop 1
NodeMCU ESP8266 workshop 1NodeMCU ESP8266 workshop 1
NodeMCU ESP8266 workshop 1
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 
Raspberrypi best ppt
Raspberrypi best ppt Raspberrypi best ppt
Raspberrypi best ppt
 
Home_Automation_using_NodeMCU.pdf
Home_Automation_using_NodeMCU.pdfHome_Automation_using_NodeMCU.pdf
Home_Automation_using_NodeMCU.pdf
 
IOT Unit-2 by Durgacharan
IOT Unit-2 by DurgacharanIOT Unit-2 by Durgacharan
IOT Unit-2 by Durgacharan
 
Arduino
ArduinoArduino
Arduino
 
Arduino
ArduinoArduino
Arduino
 
Raspberry pi technical documentation
Raspberry pi technical documentationRaspberry pi technical documentation
Raspberry pi technical documentation
 

Destacado

Destacado (10)

電路學 - [第二章] 電路分析方法
電路學 - [第二章] 電路分析方法電路學 - [第二章] 電路分析方法
電路學 - [第二章] 電路分析方法
 
電路學 - [第一章] 電路元件與基本定律
電路學 - [第一章] 電路元件與基本定律電路學 - [第一章] 電路元件與基本定律
電路學 - [第一章] 電路元件與基本定律
 
Implementation of the ZigBee ZCL Reporting Configuration Features
Implementation of the ZigBee ZCL Reporting Configuration FeaturesImplementation of the ZigBee ZCL Reporting Configuration Features
Implementation of the ZigBee ZCL Reporting Configuration Features
 
射頻電子實驗手冊 - [實驗7] 射頻放大器模擬
射頻電子實驗手冊 - [實驗7] 射頻放大器模擬射頻電子實驗手冊 - [實驗7] 射頻放大器模擬
射頻電子實驗手冊 - [實驗7] 射頻放大器模擬
 
射頻電子實驗手冊 - [實驗8] 低雜訊放大器模擬
射頻電子實驗手冊 - [實驗8] 低雜訊放大器模擬射頻電子實驗手冊 - [實驗8] 低雜訊放大器模擬
射頻電子實驗手冊 - [實驗8] 低雜訊放大器模擬
 
Agilent ADS 模擬手冊 [實習1] 基本操作與射頻放大器設計
Agilent ADS 模擬手冊 [實習1] 基本操作與射頻放大器設計Agilent ADS 模擬手冊 [實習1] 基本操作與射頻放大器設計
Agilent ADS 模擬手冊 [實習1] 基本操作與射頻放大器設計
 
射頻電子實驗手冊 [實驗6] 阻抗匹配模擬
射頻電子實驗手冊 [實驗6] 阻抗匹配模擬射頻電子實驗手冊 [實驗6] 阻抗匹配模擬
射頻電子實驗手冊 [實驗6] 阻抗匹配模擬
 
Agilent ADS 模擬手冊 [實習2] 放大器設計
Agilent ADS 模擬手冊 [實習2]  放大器設計Agilent ADS 模擬手冊 [實習2]  放大器設計
Agilent ADS 模擬手冊 [實習2] 放大器設計
 
Agilent ADS 模擬手冊 [實習3] 壓控振盪器模擬
Agilent ADS 模擬手冊 [實習3] 壓控振盪器模擬Agilent ADS 模擬手冊 [實習3] 壓控振盪器模擬
Agilent ADS 模擬手冊 [實習3] 壓控振盪器模擬
 
射頻電子實驗手冊 [實驗1 ~ 5] ADS入門, 傳輸線模擬, 直流模擬, 暫態模擬, 交流模擬
射頻電子實驗手冊 [實驗1 ~ 5] ADS入門, 傳輸線模擬, 直流模擬, 暫態模擬, 交流模擬射頻電子實驗手冊 [實驗1 ~ 5] ADS入門, 傳輸線模擬, 直流模擬, 暫態模擬, 交流模擬
射頻電子實驗手冊 [實驗1 ~ 5] ADS入門, 傳輸線模擬, 直流模擬, 暫態模擬, 交流模擬
 

Similar a ESP8266 and IOT

Emanuele Faranda - Creating network overlays with IoT devices using N2N
Emanuele Faranda - Creating network overlays with IoT devices using N2NEmanuele Faranda - Creating network overlays with IoT devices using N2N
Emanuele Faranda - Creating network overlays with IoT devices using N2N
linuxlab_conf
 

Similar a ESP8266 and IOT (20)

Andrea De Gaetano - An Adventure with ESP8266 firmwares and IOT
Andrea De Gaetano - An Adventure with ESP8266 firmwares and IOTAndrea De Gaetano - An Adventure with ESP8266 firmwares and IOT
Andrea De Gaetano - An Adventure with ESP8266 firmwares and IOT
 
WiFi mesh network(ESP32 mStar and mesh topology)
WiFi mesh network(ESP32 mStar and mesh topology)WiFi mesh network(ESP32 mStar and mesh topology)
WiFi mesh network(ESP32 mStar and mesh topology)
 
Challenges and experiences with IPTV from a network point of view
Challenges and experiences with IPTV from a network point of viewChallenges and experiences with IPTV from a network point of view
Challenges and experiences with IPTV from a network point of view
 
IoT: Internet of Things with Python
IoT: Internet of Things with PythonIoT: Internet of Things with Python
IoT: Internet of Things with Python
 
Node-RED and Minecraft - CamJam September 2015
Node-RED and Minecraft - CamJam September 2015Node-RED and Minecraft - CamJam September 2015
Node-RED and Minecraft - CamJam September 2015
 
Emanuele Faranda - Creating network overlays with IoT devices using N2N
Emanuele Faranda - Creating network overlays with IoT devices using N2NEmanuele Faranda - Creating network overlays with IoT devices using N2N
Emanuele Faranda - Creating network overlays with IoT devices using N2N
 
FFMUC goes wild - Infrastructure recap 2020 #rc3
FFMUC goes wild - Infrastructure recap 2020 #rc3FFMUC goes wild - Infrastructure recap 2020 #rc3
FFMUC goes wild - Infrastructure recap 2020 #rc3
 
Powering your next IoT application with MQTT - JavaOne 2014 tutorial
Powering your next IoT application with MQTT - JavaOne 2014 tutorialPowering your next IoT application with MQTT - JavaOne 2014 tutorial
Powering your next IoT application with MQTT - JavaOne 2014 tutorial
 
Monkey Server
Monkey ServerMonkey Server
Monkey Server
 
OSCONF Jaipur - A Hitchhiker's Tour to Containerizing a Java application
OSCONF Jaipur - A Hitchhiker's Tour to Containerizing a Java applicationOSCONF Jaipur - A Hitchhiker's Tour to Containerizing a Java application
OSCONF Jaipur - A Hitchhiker's Tour to Containerizing a Java application
 
LlinuxKit security, Security Scanning and Notary
LlinuxKit security, Security Scanning and NotaryLlinuxKit security, Security Scanning and Notary
LlinuxKit security, Security Scanning and Notary
 
Tos tutorial
Tos tutorialTos tutorial
Tos tutorial
 
Network Design For Alliance Française de Dhaka
Network Design For Alliance Française de DhakaNetwork Design For Alliance Française de Dhaka
Network Design For Alliance Française de Dhaka
 
ITCamp 2017 - Raffaele Rialdi - Adopting .NET Core in Mainstream Projects
ITCamp 2017 - Raffaele Rialdi - Adopting .NET Core in Mainstream ProjectsITCamp 2017 - Raffaele Rialdi - Adopting .NET Core in Mainstream Projects
ITCamp 2017 - Raffaele Rialdi - Adopting .NET Core in Mainstream Projects
 
Docker adventures in Continuous Delivery - Alex Vranceanu
Docker adventures in Continuous Delivery - Alex VranceanuDocker adventures in Continuous Delivery - Alex Vranceanu
Docker adventures in Continuous Delivery - Alex Vranceanu
 
DockerDay2015: Keynote
DockerDay2015: KeynoteDockerDay2015: Keynote
DockerDay2015: Keynote
 
Iot Bootcamp - abridged - part 1
Iot Bootcamp - abridged - part 1Iot Bootcamp - abridged - part 1
Iot Bootcamp - abridged - part 1
 
ArduRadio
ArduRadio ArduRadio
ArduRadio
 
[codemotion] Arduino Yun: internet for makers
[codemotion] Arduino Yun: internet for makers[codemotion] Arduino Yun: internet for makers
[codemotion] Arduino Yun: internet for makers
 
Arduino Yún: internet for makers
Arduino Yún: internet for makersArduino Yún: internet for makers
Arduino Yún: internet for makers
 

Último

Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Naicy mandal
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
ehyxf
 
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get CytotecAbortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in DammamAbortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
ahmedjiabur940
 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
drmarathore
 
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
tufbav
 
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
gajnagarg
 

Último (20)

Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Sanjay Nagar ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad ✔ 6297143586 ✔ Hot Model With Sexy Bhabi Rea...
 
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
HLH PPT.ppt very important topic to discuss
HLH PPT.ppt very important topic to discussHLH PPT.ppt very important topic to discuss
HLH PPT.ppt very important topic to discuss
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
 
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
 
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get CytotecAbortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get Cytotec
 
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in DammamAbortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
 
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
怎样办理维多利亚大学毕业证(UVic毕业证书)成绩单留信认证
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
 

ESP8266 and IOT

  • 1. MILAN 20/21.11.2015 Andrea De Gaetano - @dega1999 An adventure with ESP8266 and IOT
  • 2. MILAN 20/21.11.2015 Andrea De Gaetano Genova, Italy My blog: http://pestohacks.blogspot.com
  • 3. MILAN 20/21.11.2015 - Andrea De Gaetano “What I have learnt since I started playing with ESP8266”
  • 4. MILAN 20/21.11.2015 - Andrea De Gaetano • Introduction to ESP8266 hardware • Getting started: ESP8266 versions, software and hardware requirements, wirings • Official firmware, arduino and the EspressIF software • Alternative firmwares: frankestain, micropython, nodemcu • The NodeMCU project • MQTT and Mosquitto • Visualize data: web client • Demo project • Future..
  • 5. MILAN 20/21.11.2015 - Andrea De Gaetano HARDWARE Wifi enabled - Microcontroller 802.11 b/g/n CPU: 80 Mhz (160 Mhz overclock?) RAM: 64 kb istruction + 96 kb data ROM: from 512kb to 4mb I2C, GPIO, SPI C++ SDK Available Cheap! < 7-8€
  • 6. MILAN 20/21.11.2015 - Andrea De Gaetano Wifi Capabilities - Station Mode: - act as an access point - Access Point Mode: - connect to an access point - issues with password < 8 characters - Mixed Mode: - the two mode together
  • 7. MILAN 20/21.11.2015 - Andrea De Gaetano What this product is useful for? Device prototyping IOT prototyping Extends your project with wireless support Simulate a network of devices Network fuzzer
  • 8. MILAN 20/21.11.2015 - Andrea De Gaetano Variants / Revisions Spoiler: not all the variants are here
  • 9. MILAN 20/21.11.2015 - Andrea De Gaetano Tools Stable 3.3v power serial terminal: kermit, minicom … esptool.py: flasher tool luatool: (nodemcu project only) USB to serial TTL 3.3v
  • 10. MILAN 20/21.11.2015 - Andrea De Gaetano ESP8266-04 Wirings
  • 11. MILAN 20/21.11.2015 - Andrea De Gaetano NodeMCU DevKit • Easy: no solder required • Less funny • Price ~15 euro • Why didn’t I used it?
  • 12. MILAN 20/21.11.2015 - Andrea De Gaetano because I burned one… :/
  • 13. MILAN 20/21.11.2015 - Andrea De Gaetano When you Power On with official firmware It creates a wireless network with a “ESP” prefix … net packets to /dev/null A first check “it works!” Serial speed is 9660 kbps or 115200 kbps Configurations depends on the firmware version Lesson: Flash a well known firmware
  • 14. MILAN 20/21.11.2015 - Andrea De Gaetano Flash the firmware Use their flasher: https://github.com/nodemcu/nodemcu-flasher • for Windows • a Multiplatform version with QT: Not available yet Note for NodeMCU devkit https://github.com/themadinventor/esptool python esptool.py -p /dev/tty.usbserial write_flash 0x00000 bin/0x00000.bin 0x10000 bin/0x10000.bin • /dev/tty.usbserial depends on USB to Serial converter • Addresses (e.g. 0x00000) depends on firmware, check docs!
  • 15. MILAN 20/21.11.2015 - Andrea De Gaetano An Old Friend: AT Commands The official firmware comes with AT commands support http://wiki.iteadstudio.com/ ESP8266_Serial_WIFI_Module#AT_Commands
  • 16. MILAN 20/21.11.2015 - Andrea De Gaetano (Some) Official Firmware Features Control Device settings: • Wireless modes: access point/station mode • Wireless network name and password (station mode) • on/off wifi • … Send / Receive data over TCP • client TCP: a rudimental browser • server TCP: a slow http server Frustrating experience over terminal
  • 17. MILAN 20/21.11.2015 - Andrea De Gaetano EspressIF SDK (the official SDK) • Released in Oct 2014 • Works under Linux • Give major control over the device: GPIO, I2C, SPI • Can Extends AT commands • Generate firmware • It’s C++: hard debugging and possible infinite reboot on faulty fw http://bbs.espressif.com/
  • 18. MILAN 20/21.11.2015 - Andrea De Gaetano Alternatives: Arduino’s Way • Use Arduino IDE modified: https://github.com/esp8266/ arduino • Write sketch with “Arduino-C” Or … • Connect an Arduino with RX/TX and Use AT commands: because arduino shields for wifi are expensive PRO: useful to give connectivity to existing arduino projects Not interested… Never tried…
  • 19. MILAN 20/21.11.2015 - Andrea De Gaetano Alternatives: Firmwares Some months later the community bring us new opensource firmwares! • Frankenstein: described as “quick and dirty firmware”. Good console support. https://github.com/nekromant/esp8266-frankenstein • MicroPython: programmable with python. Good for prototyping https://github.com/micropython/micropython/tree/master/esp8266 • NodeMCU: programmable with LUA, very good API! https://github.com/nodemcu/nodemcu-firmware Repeat:All code is opensource!
  • 20. MILAN 20/21.11.2015 - Andrea De Gaetano Nodemcu Program are written with LUA: easy syntax, easy to learn. Program === Scripts: no need to recompile and flash firmware Commands testable directly from the terminal A lot of good and useful api for: • GPIO • I2C • SPI • MQTT • File management read/write • UART • 1-wire bus
  • 21. MILAN 20/21.11.2015 - Andrea De Gaetano Working with NodeMCU Download a firmware or build a new one http://frightanic.com/nodemcu-custom-build/
  • 22. MILAN 20/21.11.2015 - Andrea De Gaetano A Project with NodeMCU It’s all started with the idea of building a drone.. but this is another story :) I decided to test the device on 2 topics I didn’t know: • MQTT • I2C Project Summary: Use ESP8266 to: • Sends accelerometer data(x,y,z) coming from an I2C sensor • Use MQTT • visualize the data in the browser
  • 23. MILAN 20/21.11.2015 - Andrea De Gaetano The accelerometer:ADXL345 It supports: • I2C • SPI Send: • Raw data • Recognize gestures: tap, double tap.. • Recognize events: free fall • … Problem: no driver for control the device Solution: Ok, write the driver
  • 24. MILAN 20/21.11.2015 - Andrea De Gaetano
  • 25. MILAN 20/21.11.2015 - Andrea De Gaetano ADXL345 Driver How I wrote the I2C driver: • Read about I2C protocol • Read the data sheet of ADXL345 • Read the Arduino driver/libraries C++ sourcecode(s) • Find the I2C pin: SDA,SCL (i2c_scanner.lua) • while (notworking) • read nodemcu API • write code • upload code • test • while (somethingIsWorkingButNotYet) • read documentation again • change the code • test
  • 26. MILAN 20/21.11.2015 - Andrea De Gaetano ADXL345 Driver’s Code! It will be available on my github
  • 27. MILAN 20/21.11.2015 - Andrea De Gaetano
  • 28. MILAN 20/21.11.2015 - Andrea De Gaetano MQTT shortly Used for M2M communication Used on Facebook messenger MQ Telemetry Transport is a publish-subscribe based "light weight" messaging protocol for use on top of the TCP/IP protocol. It is designed for connections with remote locations where a "small code footprint" is required or the network bandwidth is limited. Andy Stanford-Clark and Arlen Nipper of Cirrus Link Solutions authored the first version of the protocol in 1999. The specification does not specify the meaning of "small code foot print" or the meaning of "limited network bandwidth".
  • 29. MILAN 20/21.11.2015 - Andrea De Gaetano MQTT shortly Actors: - broker: who will “route” messages - subscriber: who is subscribed to a topic - publisher: who is producing messages on a topic
  • 30. MILAN 20/21.11.2015 - Andrea De Gaetano Mosquitto Mosquitto is an open source (BSD licensed) message broker that implements the MQ Telemetry Transport protocol versions 3.1 and 3.1.1. It is released with 3 main tools: mosquitto: the broker mosquito_pub: the publisher mosquito_sub: the subscriber
  • 31. MILAN 20/21.11.2015 - Andrea De Gaetano MQTT: NodeMCU API mqtt.Client() mqtt.client:connect() mqtt.client:close() mqtt.client:publish() mqtt.client:subscribe() mqtt.client:on() Great!
  • 32. MILAN 20/21.11.2015 - Andrea De Gaetano MQTT: NodeMCU API first tests Trying some LUA code: •sample code on the website works >> Great! •sending multiple messages works >> Great! •using it with mosquito works >> Great! •sending more than 100 messages in a loop crash the firmware; the device reboots >> OH •messages are slowly sent >> MY •average frequency of 1msg/sec >> GOD! Figuring out … Why?
  • 33. MILAN 20/21.11.2015 - Andrea De Gaetano Analyzing NodeMCU - MQTT implementation From stackoverflow Original thread: http://stackoverflow.com/questions/33414441/nodemcu-and-esp8266-slow-mqtt-publish/ After reading the C++ sourcecode on github of nodemcu.. I asked on SO what’s the problem with slow messages
  • 34. MILAN 20/21.11.2015 - Andrea De Gaetano Compile a NodeMCU Firmware • The power of source code • Compile a new firmware is not that hard!! :) • Patching code is not complicated • NodeMCU is modular • Enable debug (print) is useful but, verbose • Disable unused modules • There are vagrant images available on github https://github.com/kmpm/esp8266-vagrant
  • 35. MILAN 20/21.11.2015 - Andrea De Gaetano NodeMCU Customized Firmware Changes: • F*ck queue for publishing messages • Messages are published directly Message order is controlled on subscriber side: if a message is in incorrect order… bye bye! Send the message inside a thread means: No crash… :)
  • 36. MILAN 20/21.11.2015 - Andrea De Gaetano MQTT on the browser? WebSocket is the answer! Nodejs + websocket + mqtt.js Summary of the algorithm •Setup ADXL345 •Setup MQTT connection •Every X ms times •Read the data from ADXL345 •Publish the data with MQTT •repeat
  • 37. MILAN 20/21.11.2015 - Andrea De Gaetano Future
  • 38. MILAN 20/21.11.2015 - Andrea De Gaetano Future:The ESP32 •Faster Wifi (~144 mb/s === streaming!) •Double Processor: 160 Mhz (because “tciu is megl che uan”) •More GPIOs •More ram: 400kb! (Remember:“640kb is enough” B.Gates) •Bluetooth LE day one (Full Bluetooth support later) •Not a replacement of ESP8266 •“NodeMCU compatible”.. maybe!
  • 39. MILAN 20/21.11.2015 - Andrea De Gaetano Demo Time
  • 40. MILAN 20/21.11.2015 - SPEAKER’S NAME Leave your feedback on Joind.in! https://m.joind.in/event/codemotion-milan-2015 All the code will be on repos here next week: https://github.com/crazycoder1999/ check my twitter for update: @dega1999 or my blog