SlideShare a Scribd company logo
Globalcode – Open4education
Trilha – Arduino e Makers
Relsi Maron
Programando o ESP8266 com Python
Globalcode – Open4education
Quem?
- Programador
- 7 Anos no teclado
- 3 Anos num relacionamento sério com Python
- http://github.com/relsi
- http://pt.slideshare.net/relsi
- http://linkedin.com/in/relsi
- http://ikebanacw.com
Globalcode – Open4education
Para quem?
Globalcode – Open4education
Por que Python?
Globalcode – Open4education
Por que Python?
Globalcode – Open4education
Por que Python?
Globalcode – Open4education
Por que Python?
Bonito é melhor que feio.
Explícito é melhor que implícito.
Simples é melhor que complexo.
Complexo é melhor que complicado.
Linear é melhor do que aninhado.
Esparso é melhor que denso.
Legibilidade conta.
Casos especiais não são especiais o bastante para quebrar as regras.
Ainda que praticidade vença a pureza.
Erros nunca devem passar silenciosamente.
A menos que sejam explicitamente silenciados.
Diante da ambigüidade, recuse a tentação de adivinhar.
Deveria haver um — e preferencialmente só um — modo óbvio para fazer algo.
Embora esse modo possa não ser óbvio a princípio a menos que você seja holandês.
Agora é melhor que nunca.
Embora nunca freqüentemente seja melhor que *já*.
Se a implementação é difícil de explicar, é uma má idéia.
Se a implementação é fácil de explicar, pode ser uma boa idéia.
Namespaces são uma grande idéia — vamos ter mais dessas!
Globalcode – Open4education
Por que Python?
Globalcode – Open4education
Por que Python?
Globalcode – Open4education
Por que Python?
- Linguagem de altíssimo nível (VHLL)
- Criada por Guido van Rossum em 1991
- Interpretada e interativa
- Multiplataforma
- Multipropósito
- Muito Foda
Globalcode – Open4education
ESP8266
- 32-bit RISC CPU 80 MHz
- 64 KiB RAM, 96 KiB of data RAM
- External QSPI flash - 512 KiB to 4 MiB
- IEEE 802.11 b/g/n Wi-Fi
- WEP/WPA/WPA2
- 16 GPIO pins
- SPI, I²C,
- UART
Globalcode – Open4education
ESP8266
Globalcode – Open4education
Por que ESP8266?
Globalcode – Open4education
Por que ESP8266?
Globalcode – Open4education
Por que ESP8266?
Globalcode – Open4education
Porque roda Python! =D
Globalcode – Open4education
Micropython
MicroPython is a lean
and efficient implementation
of the Python 3
programming language
that includes a small subset
of the Python standard library
and is optimised to run on microcontrollers
and in constrained environments.
http://www.micropython.org/
Globalcode – Open4education
MicroPython
- STM32F405RG microcontroller
- 168 MHz Cortex M4 CPU
- 1024KiB flash ROM and 192KiB RAM
- Micro USB connector
- Micro SD card slot
- 3-axis accelerometer (MMA7660)
- Real time clock with optional battery backup
- 24 GPIO on left and right edges
- 5 GPIO on bottom row
- 3x 12-bit analog to digital converters
- 2x 12-bit digital to analog (DAC) converters
- 4 LEDs (red, green, yellow and blue)
- 1 reset and 1 user switch
- On-board 3.3V LDO voltage regulator,
capable of supplying up to 250mA,
input voltage range 3.6V to 16V
- DFU bootloader in ROM
Globalcode – Open4education
- array – arrays of numeric data
- Builtin Functions
- gc – control the garbage collector
- math – mathematical functions
- sys – system specific functions
- ubinascii – binary/ASCII conversions
- ucollections – collection and container types
- uhashlib – hashing algorithm
- uheapq – heap queue algorithm
- uio – input/output streams
- ujson – JSON encoding and decoding
- uos – basic “operating system” services
- ure – regular expressions
- usocket – socket module
- ussl – ssl module
- ustruct – pack and unpack primitive data types
- utime – time related functions
- uzlib – zlib decompression
MicroPython
Standard libraries
https://goo.gl/w1Q3Yy
Globalcode – Open4education
- machine — functions related to the board
- micropython – access and control MicroPython internals
- network — network configuration
- uctypes – access binary data in a structured way
- esp — functions related to the ESP8266
MicroPython
Specific libraries
https://goo.gl/w1Q3Yy
Globalcode – Open4education
import machine
machine.freq() # get the current frequency of the CPU
machine.freq(160000000) # set the CPU frequency to 160 MHz
MicroPython
Módulo machine
https://goo.gl/8hCppg
Globalcode – Open4education
from machine import Pin
p0 = Pin(0, Pin.OUT) # create output pin on GPIO0
p0.high() # set pin to high
p0.low() # set pin to low
p0.value(1) # set pin to high
p2 = Pin(2, Pin.IN) # create input pin on GPIO2
print(p2.value()) # get value, 0 or 1
p4 = Pin(4, Pin.IN, Pin.PULL_UP) # enable internal pull-up resistor
p5 = Pin(5, Pin.OUT, value = 1) # set pin high on creation
MicroPython
Módulo machine
https://goo.gl/8hCppg
Globalcode – Open4education
import network
wlan = network.WLAN(network.STA_IF) # create station interface
wlan.active(True) # activate the interface
wlan.scan() # scan for access points
wlan.isconnected() # check if the station is connected to an AP
wlan.connect('essid', 'password') # connect to an AP
wlan.config('mac') # get MAC adddress
wlan.ifconfig() # get the interface's
#IP/netmask/gw/DNS
MicroPython
Módulo network
https://goo.gl/8hCppg
Globalcode – Open4education
import network
ap = network.WLAN(network.AP_IF) # create access-point interface
ap.active(True) # activate the interface
ap.config(essid='ESP-AP') # set the ESSID of the access point
MicroPython
Módulo network
https://goo.gl/8hCppg
Globalcode – Open4education
ESP8266 + MicroPython
Preparando o Terreno
Globalcode – Open4education
ESP8266 + MicroPython
Globalcode – Open4education
ESP8266 + MicroPython
Globalcode – Open4education
ESP8266 + MicroPython
http://pedrominatel.com.br/arduino/utilizando-o-arduino-para-programar-o-esp/
Globalcode – Open4education
ESP8266 + MicroPython
https://goo.gl/FtgaJ7
Globalcode – Open4education
ESP8266 + MicroPython
Gravando o firmware
Globalcode – Open4education
ESP8266 + MicroPython
Gravando o firmware
Verificar a porta do dispositivo
$ lsusb
Bus 001 Device 006: ID 10c4:ea60 Cygnal Integrated Products, Inc. CP210x UART...
$ dmesg | grep USB
usb 1-1: cp210x converter now attached to ttyUSB0
Instalar o esptool
$ pip install esptool
Ou
$ git clone https://github.com/themadinventor/esptool.git
Python 2.7
Globalcode – Open4education
ESP8266 + MicroPython
Gravando o firmware
Apagar o firmware atual
$ esptool.py --port /dev/ttyUSB0 erase_flash
esptool.py v1.1
Connecting...
Erasing flash (this may take a while)...
$ esptool.py --port /dev/ttyUSB0 --baud 115200 write_flash --flash_size=8m -fm
dio 0 esp8266-20160909-v1.8.4.bin
Connecting...
Running Cesanta flasher stub...
Flash params set to 0x0220
Writing 565248 @ 0x0... 565248 (100 %)
Wrote 565248 bytes at 0x0 in 12.7 seconds (357.1 kbit/s)...
Leaving...
Globalcode – Open4education
ESP8266 + MicroPython
Acessando
Globalcode – Open4education
https://github.com/micropython/webrepl
ESP8266 + MicroPython
Acessando
Globalcode – Open4education
ESP8266 + MicroPython
Acessando
Globalcode – Open4education
ESP8266 + MicroPython
Acessando
Globalcode – Open4education
ESP8266 + MicroPython
Acessando
http://esp8266.ru/esplorer/
Globalcode – Open4education
ESP8266 + MicroPython
Hello World
def blink():
import time
import machine
pin = machine.Pin(5, machine.Pin.OUT)
while True:
pin.high()
time.sleep(1)
pin.low()
time.sleep(1)
Globalcode – Open4education
ESP8266 + MicroPython
Controlando
def lampada(estado):
import machine
pin = machine.Pin(5, machine.Pin.OUT)
if estado == 1:
pin.high()
elif estado == 0:
pin.low()
Globalcode – Open4education
ESP8266 + MicroPython
Monitorando
def medida(tipo):
import dht
import machine
d = dht.DHT11(machine.Pin(4))
d.measure()
if tipo == 't':
r = d.temperature()
print(str(r) + ' °C')
elif tipo == 'h':
r = d.humidity()
print(str(r) + ' %RH')
Globalcode – Open4education
Ajuda
Referência
Tutorial
https://goo.gl/LVKXn9
https://goo.gl/Fw9wPD
Biblioteca
https://goo.gl/9s6DS8
Fórum
http://forum.micropython.org/
Globalcode – Open4education
Perguntas?
Obrigado pela atenção! :)
- http://github.com/relsi
- http://pt.slideshare.net/relsi
- http://linkedin.com/in/relsi
- http://ikebanacw.com
Ad

Recommended

ESP8266 and IOT
ESP8266 and IOT
dega1999
 
IoT simple with the ESP8266 - presented at the July 2015 Austin IoT Hardware ...
IoT simple with the ESP8266 - presented at the July 2015 Austin IoT Hardware ...
David Fowler
 
lwM2M OTA for ESP8266
lwM2M OTA for ESP8266
Manolis Nikiforakis
 
Adafruit Huzzah Esp8266 WiFi Board
Adafruit Huzzah Esp8266 WiFi Board
Biagio Botticelli
 
Esp8266 Workshop
Esp8266 Workshop
Stijn van Drunen
 
Esp8266 - Intro for dummies
Esp8266 - Intro for dummies
Pavlos Isaris
 
NodeMCU with Blynk and Firebase
NodeMCU with Blynk and Firebase
Eueung Mulyana
 
Esp8266 hack sonoma county 4/8/2015
Esp8266 hack sonoma county 4/8/2015
mycal1
 
Cassiopeia Ltd - ESP8266+Arduino workshop
Cassiopeia Ltd - ESP8266+Arduino workshop
tomtobback
 
lesson1 - Getting Started with ESP8266
lesson1 - Getting Started with ESP8266
Elaf A.Saeed
 
WiFi SoC ESP8266
WiFi SoC ESP8266
Devesh Samaiya
 
Esp8266 NodeMCU
Esp8266 NodeMCU
roadster43
 
Build WiFi gadgets using esp8266
Build WiFi gadgets using esp8266
Baoshi Zhu
 
Nodemcu - introduction
Nodemcu - introduction
Michal Sedlak
 
NodeMCU ESP8266 workshop 1
NodeMCU ESP8266 workshop 1
Andy Gelme
 
How to Install ESP8266 WiFi Web Server using Arduino IDE
How to Install ESP8266 WiFi Web Server using Arduino IDE
Naoto MATSUMOTO
 
Esp8266 basics
Esp8266 basics
Eueung Mulyana
 
Node MCU Fun
Node MCU Fun
David Bosschaert
 
Home automation-in-the-cloud-with-the-esp8266-and-adafruit-io
Home automation-in-the-cloud-with-the-esp8266-and-adafruit-io
Tran Minh Nhut
 
Remote tanklevelmonitor
Remote tanklevelmonitor
Parshwadeep Lahane
 
lesson2 - Nodemcu course - NodeMCU dev Board
lesson2 - Nodemcu course - NodeMCU dev Board
Elaf A.Saeed
 
Introduction to ESP32 Programming [Road to RIoT 2017]
Introduction to ESP32 Programming [Road to RIoT 2017]
Alwin Arrasyid
 
Programming esp8266
Programming esp8266
Baoshi Zhu
 
Arduino & NodeMcu
Arduino & NodeMcu
Guhan Ganesan
 
Home Automation by ESP8266
Home Automation by ESP8266
Gleb Vinnikov
 
IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019
Jong-Hyun Kim
 
Making wearables with NodeMCU - FOSDEM 2017
Making wearables with NodeMCU - FOSDEM 2017
Etiene Dalcol
 
Transforme ideias em realidade com python e web2py
Transforme ideias em realidade com python e web2py
Relsi Maron
 
Multirão Python - introdução ao py serial com gtk3 e arduino
Multirão Python - introdução ao py serial com gtk3 e arduino
Antonio Thomacelli
 
Desenvolvimento web com python e web2py
Desenvolvimento web com python e web2py
Relsi Maron
 

More Related Content

What's hot (19)

Cassiopeia Ltd - ESP8266+Arduino workshop
Cassiopeia Ltd - ESP8266+Arduino workshop
tomtobback
 
lesson1 - Getting Started with ESP8266
lesson1 - Getting Started with ESP8266
Elaf A.Saeed
 
WiFi SoC ESP8266
WiFi SoC ESP8266
Devesh Samaiya
 
Esp8266 NodeMCU
Esp8266 NodeMCU
roadster43
 
Build WiFi gadgets using esp8266
Build WiFi gadgets using esp8266
Baoshi Zhu
 
Nodemcu - introduction
Nodemcu - introduction
Michal Sedlak
 
NodeMCU ESP8266 workshop 1
NodeMCU ESP8266 workshop 1
Andy Gelme
 
How to Install ESP8266 WiFi Web Server using Arduino IDE
How to Install ESP8266 WiFi Web Server using Arduino IDE
Naoto MATSUMOTO
 
Esp8266 basics
Esp8266 basics
Eueung Mulyana
 
Node MCU Fun
Node MCU Fun
David Bosschaert
 
Home automation-in-the-cloud-with-the-esp8266-and-adafruit-io
Home automation-in-the-cloud-with-the-esp8266-and-adafruit-io
Tran Minh Nhut
 
Remote tanklevelmonitor
Remote tanklevelmonitor
Parshwadeep Lahane
 
lesson2 - Nodemcu course - NodeMCU dev Board
lesson2 - Nodemcu course - NodeMCU dev Board
Elaf A.Saeed
 
Introduction to ESP32 Programming [Road to RIoT 2017]
Introduction to ESP32 Programming [Road to RIoT 2017]
Alwin Arrasyid
 
Programming esp8266
Programming esp8266
Baoshi Zhu
 
Arduino & NodeMcu
Arduino & NodeMcu
Guhan Ganesan
 
Home Automation by ESP8266
Home Automation by ESP8266
Gleb Vinnikov
 
IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019
Jong-Hyun Kim
 
Making wearables with NodeMCU - FOSDEM 2017
Making wearables with NodeMCU - FOSDEM 2017
Etiene Dalcol
 
Cassiopeia Ltd - ESP8266+Arduino workshop
Cassiopeia Ltd - ESP8266+Arduino workshop
tomtobback
 
lesson1 - Getting Started with ESP8266
lesson1 - Getting Started with ESP8266
Elaf A.Saeed
 
Esp8266 NodeMCU
Esp8266 NodeMCU
roadster43
 
Build WiFi gadgets using esp8266
Build WiFi gadgets using esp8266
Baoshi Zhu
 
Nodemcu - introduction
Nodemcu - introduction
Michal Sedlak
 
NodeMCU ESP8266 workshop 1
NodeMCU ESP8266 workshop 1
Andy Gelme
 
How to Install ESP8266 WiFi Web Server using Arduino IDE
How to Install ESP8266 WiFi Web Server using Arduino IDE
Naoto MATSUMOTO
 
Home automation-in-the-cloud-with-the-esp8266-and-adafruit-io
Home automation-in-the-cloud-with-the-esp8266-and-adafruit-io
Tran Minh Nhut
 
lesson2 - Nodemcu course - NodeMCU dev Board
lesson2 - Nodemcu course - NodeMCU dev Board
Elaf A.Saeed
 
Introduction to ESP32 Programming [Road to RIoT 2017]
Introduction to ESP32 Programming [Road to RIoT 2017]
Alwin Arrasyid
 
Programming esp8266
Programming esp8266
Baoshi Zhu
 
Home Automation by ESP8266
Home Automation by ESP8266
Gleb Vinnikov
 
IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019
Jong-Hyun Kim
 
Making wearables with NodeMCU - FOSDEM 2017
Making wearables with NodeMCU - FOSDEM 2017
Etiene Dalcol
 

Viewers also liked (20)

Transforme ideias em realidade com python e web2py
Transforme ideias em realidade com python e web2py
Relsi Maron
 
Multirão Python - introdução ao py serial com gtk3 e arduino
Multirão Python - introdução ao py serial com gtk3 e arduino
Antonio Thomacelli
 
Desenvolvimento web com python e web2py
Desenvolvimento web com python e web2py
Relsi Maron
 
Desenvolvimento de Jogos com Software Livre
Desenvolvimento de Jogos com Software Livre
Relsi Maron
 
Produção Audiovisual com Software Livre
Produção Audiovisual com Software Livre
Relsi Maron
 
Automação Residencial com Python e Arduino - PySM 2015
Automação Residencial com Python e Arduino - PySM 2015
Relsi Maron
 
Desenvolvimento web ágil com python e web2py
Desenvolvimento web ágil com python e web2py
Relsi Maron
 
Arduino + Python: produtividade ao extremo
Arduino + Python: produtividade ao extremo
Álvaro Justen
 
Apresentando a Godot Game Engine no FISL 16
Apresentando a Godot Game Engine no FISL 16
Relsi Maron
 
P1
P1
Cesar Oswaldo Osorio Agualongo
 
Apunte c a_bajo_nivel
Apunte c a_bajo_nivel
Carlos Arroyo Díaz
 
Memoria dinámica en el lenguaje de programación c
Memoria dinámica en el lenguaje de programación c
juan perez
 
Basededatosicompleto 091122141836-phpapp02
Basededatosicompleto 091122141836-phpapp02
Cesar Oswaldo Osorio Agualongo
 
Isaac Asimov
Isaac Asimov
yapsmail
 
Desenvolvendo games com ferramentas livres
Desenvolvendo games com ferramentas livres
Relsi Maron
 
Desenvolvendo aplicações web com python e web2py
Desenvolvendo aplicações web com python e web2py
Gilson Filho
 
Programação ara não programadores com python e web2py
Programação ara não programadores com python e web2py
Relsi Maron
 
robotics and its components
robotics and its components
Amandeep Kaur
 
Desenvolvimento web com python e web2py
Desenvolvimento web com python e web2py
Relsi Maron
 
AVR_Course_Day5 avr interfaces
AVR_Course_Day5 avr interfaces
Mohamed Ali
 
Transforme ideias em realidade com python e web2py
Transforme ideias em realidade com python e web2py
Relsi Maron
 
Multirão Python - introdução ao py serial com gtk3 e arduino
Multirão Python - introdução ao py serial com gtk3 e arduino
Antonio Thomacelli
 
Desenvolvimento web com python e web2py
Desenvolvimento web com python e web2py
Relsi Maron
 
Desenvolvimento de Jogos com Software Livre
Desenvolvimento de Jogos com Software Livre
Relsi Maron
 
Produção Audiovisual com Software Livre
Produção Audiovisual com Software Livre
Relsi Maron
 
Automação Residencial com Python e Arduino - PySM 2015
Automação Residencial com Python e Arduino - PySM 2015
Relsi Maron
 
Desenvolvimento web ágil com python e web2py
Desenvolvimento web ágil com python e web2py
Relsi Maron
 
Arduino + Python: produtividade ao extremo
Arduino + Python: produtividade ao extremo
Álvaro Justen
 
Apresentando a Godot Game Engine no FISL 16
Apresentando a Godot Game Engine no FISL 16
Relsi Maron
 
Memoria dinámica en el lenguaje de programación c
Memoria dinámica en el lenguaje de programación c
juan perez
 
Isaac Asimov
Isaac Asimov
yapsmail
 
Desenvolvendo games com ferramentas livres
Desenvolvendo games com ferramentas livres
Relsi Maron
 
Desenvolvendo aplicações web com python e web2py
Desenvolvendo aplicações web com python e web2py
Gilson Filho
 
Programação ara não programadores com python e web2py
Programação ara não programadores com python e web2py
Relsi Maron
 
robotics and its components
robotics and its components
Amandeep Kaur
 
Desenvolvimento web com python e web2py
Desenvolvimento web com python e web2py
Relsi Maron
 
AVR_Course_Day5 avr interfaces
AVR_Course_Day5 avr interfaces
Mohamed Ali
 
Ad

Similar to Programando o ESP8266 com Python (20)

Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer Kit
Sulamita Garcia
 
IoT: Internet of Things with Python
IoT: Internet of Things with Python
Lelio Campanile
 
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
CODE BLUE
 
[MakerHN] [IoT] [01] Intro 2
[MakerHN] [IoT] [01] Intro 2
Công Hoàng Văn
 
Package Management via Spack on SJTU π Supercomputer
Package Management via Spack on SJTU π Supercomputer
Jianwen Wei
 
IoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3B
Jingfeng Liu
 
Attendance system using MYSQL with Raspberry pi and RFID-RC522
Attendance system using MYSQL with Raspberry pi and RFID-RC522
Sanjay Kumar
 
Introduction to FreeRTOS
Introduction to FreeRTOS
ICS
 
Workshop on IoT and Basic Home Automation_BAIUST.pptx
Workshop on IoT and Basic Home Automation_BAIUST.pptx
Redwan Ferdous
 
Connected hardware for Software Engineers 101
Connected hardware for Software Engineers 101
Pance Cavkovski
 
Rapid IoT prototyping with mruby
Rapid IoT prototyping with mruby
雅也 山本
 
Webshield internet of things
Webshield internet of things
Raghav Shetty
 
Practical Introduction to Internet of Things (IoT)
Practical Introduction to Internet of Things (IoT)
Suraj Kumar Jana
 
ESP32 WiFi & Bluetooth Module - Getting Started Guide
ESP32 WiFi & Bluetooth Module - Getting Started Guide
handson28
 
Republic of IoT 2018 - ESPectro32 and NB-IoT Workshop
Republic of IoT 2018 - ESPectro32 and NB-IoT Workshop
Alwin Arrasyid
 
Prometheus as exposition format for eBPF programs running on Kubernetes
Prometheus as exposition format for eBPF programs running on Kubernetes
Leonardo Di Donato
 
One library for all Java encryption
One library for all Java encryption
Dan Cvrcek
 
Cc internet of things @ Thomas More
Cc internet of things @ Thomas More
JWORKS powered by Ordina
 
IoT Session Thomas More
IoT Session Thomas More
Kevin Van den Abeele
 
IoT: From Arduino MicroControllers to Tizen Products Using IoTivity - Philipp...
IoT: From Arduino MicroControllers to Tizen Products Using IoTivity - Philipp...
WithTheBest
 
Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer Kit
Sulamita Garcia
 
IoT: Internet of Things with Python
IoT: Internet of Things with Python
Lelio Campanile
 
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
[CB20] Vulnerabilities of Machine Learning Infrastructure by Sergey Gordeychik
CODE BLUE
 
[MakerHN] [IoT] [01] Intro 2
[MakerHN] [IoT] [01] Intro 2
Công Hoàng Văn
 
Package Management via Spack on SJTU π Supercomputer
Package Management via Spack on SJTU π Supercomputer
Jianwen Wei
 
IoT with openHAB on pcDuino3B
IoT with openHAB on pcDuino3B
Jingfeng Liu
 
Attendance system using MYSQL with Raspberry pi and RFID-RC522
Attendance system using MYSQL with Raspberry pi and RFID-RC522
Sanjay Kumar
 
Introduction to FreeRTOS
Introduction to FreeRTOS
ICS
 
Workshop on IoT and Basic Home Automation_BAIUST.pptx
Workshop on IoT and Basic Home Automation_BAIUST.pptx
Redwan Ferdous
 
Connected hardware for Software Engineers 101
Connected hardware for Software Engineers 101
Pance Cavkovski
 
Rapid IoT prototyping with mruby
Rapid IoT prototyping with mruby
雅也 山本
 
Webshield internet of things
Webshield internet of things
Raghav Shetty
 
Practical Introduction to Internet of Things (IoT)
Practical Introduction to Internet of Things (IoT)
Suraj Kumar Jana
 
ESP32 WiFi & Bluetooth Module - Getting Started Guide
ESP32 WiFi & Bluetooth Module - Getting Started Guide
handson28
 
Republic of IoT 2018 - ESPectro32 and NB-IoT Workshop
Republic of IoT 2018 - ESPectro32 and NB-IoT Workshop
Alwin Arrasyid
 
Prometheus as exposition format for eBPF programs running on Kubernetes
Prometheus as exposition format for eBPF programs running on Kubernetes
Leonardo Di Donato
 
One library for all Java encryption
One library for all Java encryption
Dan Cvrcek
 
IoT: From Arduino MicroControllers to Tizen Products Using IoTivity - Philipp...
IoT: From Arduino MicroControllers to Tizen Products Using IoTivity - Philipp...
WithTheBest
 
Ad

Recently uploaded (20)

Human Computer Interactions Lecture 1.pptx
Human Computer Interactions Lecture 1.pptx
ShavinGopee2
 
Max Power products list 2024 compone.pdf
Max Power products list 2024 compone.pdf
jmglpa
 
ECE_Embeded_Systems_Lecture_Notes of .pdf
ECE_Embeded_Systems_Lecture_Notes of .pdf
sudheerkurakula1218
 
最新版美国北西雅图学院毕业证(NSCC毕业证书)原版定制
最新版美国北西雅图学院毕业证(NSCC毕业证书)原版定制
Taqyea
 
Custom Hardware design for image processing.pptx
Custom Hardware design for image processing.pptx
DevanshuGaur5
 
Presentación estilo futurístico para powerpoint.pdf
Presentación estilo futurístico para powerpoint.pdf
SubaruKun1
 
最新版德国不来梅艺术学院毕业证(HfK毕业证书)原版定制
最新版德国不来梅艺术学院毕业证(HfK毕业证书)原版定制
Taqyea
 
Questions on Respiratory system..docxnnn
Questions on Respiratory system..docxnnn
medapatiramakrishnar
 
OB_ICF_PPT.pdf nsnsnsnnsnnsnennenenneennenenne
OB_ICF_PPT.pdf nsnsnsnnsnnsnennenenneennenenne
dibaynlucero
 
ChatGPT_Presentation_Laraib (1) Based on document editing and rlhf experiment...
ChatGPT_Presentation_Laraib (1) Based on document editing and rlhf experiment...
rajveerverma425
 
Windows Cleaner Software By Yamicsoft.pptx
Windows Cleaner Software By Yamicsoft.pptx
yamicsoft458
 
[Back2School] Timing Checks- Chapter 5.pdf
[Back2School] Timing Checks- Chapter 5.pdf
Ahmed Abdelazeem
 
最新版美国杜比克大学毕业证(UD毕业证书)原版定制
最新版美国杜比克大学毕业证(UD毕业证书)原版定制
taqyea
 
AZ-900 Summary with all information that
AZ-900 Summary with all information that
FadiAlkanani1
 
artifical intelligence and its usage in biology
artifical intelligence and its usage in biology
chaned5
 
How_Volcanshgsgsgsgsgsgsgsggsoes_Work.pptx
How_Volcanshgsgsgsgsgsgsgsggsoes_Work.pptx
zyx10283746
 
miiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiirs.pptx
miiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiirs.pptx
ChandanKumarMajhi4
 
Muscular_System_Scaffold_Presentation.pptx
Muscular_System_Scaffold_Presentation.pptx
Manikantan70
 
Custom Hardware design for serial communication.pdf
Custom Hardware design for serial communication.pdf
DevanshuGaur5
 
最新版德国弗赖堡音乐学院毕业证(Freiburg毕业证书)原版定制
最新版德国弗赖堡音乐学院毕业证(Freiburg毕业证书)原版定制
Taqyea
 
Human Computer Interactions Lecture 1.pptx
Human Computer Interactions Lecture 1.pptx
ShavinGopee2
 
Max Power products list 2024 compone.pdf
Max Power products list 2024 compone.pdf
jmglpa
 
ECE_Embeded_Systems_Lecture_Notes of .pdf
ECE_Embeded_Systems_Lecture_Notes of .pdf
sudheerkurakula1218
 
最新版美国北西雅图学院毕业证(NSCC毕业证书)原版定制
最新版美国北西雅图学院毕业证(NSCC毕业证书)原版定制
Taqyea
 
Custom Hardware design for image processing.pptx
Custom Hardware design for image processing.pptx
DevanshuGaur5
 
Presentación estilo futurístico para powerpoint.pdf
Presentación estilo futurístico para powerpoint.pdf
SubaruKun1
 
最新版德国不来梅艺术学院毕业证(HfK毕业证书)原版定制
最新版德国不来梅艺术学院毕业证(HfK毕业证书)原版定制
Taqyea
 
Questions on Respiratory system..docxnnn
Questions on Respiratory system..docxnnn
medapatiramakrishnar
 
OB_ICF_PPT.pdf nsnsnsnnsnnsnennenenneennenenne
OB_ICF_PPT.pdf nsnsnsnnsnnsnennenenneennenenne
dibaynlucero
 
ChatGPT_Presentation_Laraib (1) Based on document editing and rlhf experiment...
ChatGPT_Presentation_Laraib (1) Based on document editing and rlhf experiment...
rajveerverma425
 
Windows Cleaner Software By Yamicsoft.pptx
Windows Cleaner Software By Yamicsoft.pptx
yamicsoft458
 
[Back2School] Timing Checks- Chapter 5.pdf
[Back2School] Timing Checks- Chapter 5.pdf
Ahmed Abdelazeem
 
最新版美国杜比克大学毕业证(UD毕业证书)原版定制
最新版美国杜比克大学毕业证(UD毕业证书)原版定制
taqyea
 
AZ-900 Summary with all information that
AZ-900 Summary with all information that
FadiAlkanani1
 
artifical intelligence and its usage in biology
artifical intelligence and its usage in biology
chaned5
 
How_Volcanshgsgsgsgsgsgsgsggsoes_Work.pptx
How_Volcanshgsgsgsgsgsgsgsggsoes_Work.pptx
zyx10283746
 
miiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiirs.pptx
miiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiirs.pptx
ChandanKumarMajhi4
 
Muscular_System_Scaffold_Presentation.pptx
Muscular_System_Scaffold_Presentation.pptx
Manikantan70
 
Custom Hardware design for serial communication.pdf
Custom Hardware design for serial communication.pdf
DevanshuGaur5
 
最新版德国弗赖堡音乐学院毕业证(Freiburg毕业证书)原版定制
最新版德国弗赖堡音乐学院毕业证(Freiburg毕业证书)原版定制
Taqyea
 

Programando o ESP8266 com Python