SlideShare a Scribd company logo
Getting Started with Embedded Python
(MicroPython and CircuitPython)
@iAyanPahwa/iayanpahwa
About Me
Embedded Software
Engineer at Mentor
Graphics - A Siemens
Business
Part time blogger
Full time maker
Mentor Graphics is world
leader in Electronics Design
Automation(Tools Business).
I work for Automotive
Embedded Software Division,
which deals in providing
custom solutions, OS and
BSP for IVI and ADAS
systems.
Contact: https://iayanpahwa.github.io
People who are really
serious about software
should make their own
hardware
- Alan Kay
Motivation
-
@iAyanPahwa/iayanpahwa
Motivation
@iAyanPahwa/iayanpahwa
What is MicroPython
The MicroPython project is an open source
implementation of Python 3 that includes a small
subset of the Python standard libraries, and is
optimised to run on microcontrollers with constrained
environments like limited ROM, RAM and processing
power. It came about after a successful Kick-starter
campaign by Damien George.
@iAyanPahwa/iayanpahwa
Python 3
IoT
(Devices)
Microcontrollers
In a NutShell
@iAyanPahwa/iayanpahwa
Opportunities
@iAyanPahwa/iayanpahwa
@iAyanPahwa/iayanpahwa
~20MHz System Clock
~32Kb RAM
~16MB ROM
Single Core
Register Level Access
Microcontrollers
@iAyanPahwa/iayanpahwa
MicroPython
- A small stripped down version on Python3 which runs as ๏ฌrmware on microcontrollers,
exposes all the low level modules, acting as an operating system.
- It is packed full of advanced features such as an interactive prompt, arbitrary precision
integers, closures, list comprehension, generators, exception handling and more.
- Yet it is compact enough to ๏ฌt and run within just 256k of code space and 16k of RAM.
- MicroPython aims to be as compatible with normal Python as possible to allow you to
transfer code with ease from the desktop to a microcontroller or embedded target.
- Python APIs for low level hardware modules- GPIOs, UART, PWM, ADC, i2c, SPI.
- Runs directly on bare-metal or under OS env or as emulator.
@iAyanPahwa/iayanpahwa
Python vs ฮผPython vs Arduino
Refer: https://github.com/micropython/micropython/wiki
@iAyanPahwa/iayanpahwa
Boards Supported
@iAyanPahwa/iayanpahwa
The PyBoard
The ESP8266
160Kb RAM
802.11 b/g/n
4MB Flash
GPIO, ADC, I2c, SPI
@iAyanPahwa/iayanpahwa
Functions & Libraries Supported
@iAyanPahwa/iayanpahwa
Interaction
Serial REPL (115200 BAUD RATE)
WEB REPL, works over LAN
File System mounts on host
Tools to transfer source code(ex: AMPY)
Emulation on linux host
Unicorn web based emulator
@iAyanPahwa/iayanpahwa
Interaction: Serial
Loading uP on ESP8266 board
Install esptool - pip install esptool
Download uP firmware.bin from GitHub release pages for
your board.
Erase flash - esptool.py --port /path/to/ESP8266
erase_flash
Flash uP firmware - esptool.py --port /path/to/ESP8266 --
baud 460800 write_flash --flash_size=detect 0 firmware.bin
Connect Serial console - screen /dev/ttyโ€ฆ 115200
@iAyanPahwa/iayanpahwa
Interaction: WebREPL
Setting up WebREPL
> import webrepl_setup
> Enter โ€˜Eโ€™ to enable it
> Enter and confirm password(defaults
micropythoN)
> Enter โ€˜yโ€™ to reboot and save changes
@iAyanPahwa/iayanpahwa
Interaction: WebREPL
@iAyanPahwa/iayanpahwa
Interaction: Unicorn
https://micropython.org/unicorn
@iAyanPahwa/iayanpahwa
Interaction: Live
https://micropython.org/live
@iAyanPahwa/iayanpahwa
Interaction: Emulator
@iAyanPahwa/iayanpahwa
(DEMO)
HELLO WORLD OF ELECTRONICS
@iAyanPahwa/iayanpahwa
Interaction: Hello WORlD
// Classic way of Blinking LED
#include โ€œBoard_De๏ฌnation_File.hโ€
int main(void)
{
while(1){
DDRB |= (1 << 7);
PORTB |= (1 << 7);
_delay_ms(1000);
PORTB &= ~(1 << 7);
_delay_ms(1000);
}
}
// Make Pin Output
// Send logic 1 to the pin
//Send logic 0 to the pin
@iAyanPahwa/iayanpahwa
Interaction: h3llO WORlD
> from machine import Pin
> from time import sleep
# Make Pin behave as output
> led = Pin(2, Pin.OUT)
> while True:
# Send digital logic 1 to the pin
> led.on()
> sleep(1)
# Send digital logic 0 to the pin
> led.off()
> sleep(1)
MicroPython Way
@iAyanPahwa/iayanpahwa
Interaction: Advance
File System on Flash to store:
WiFi credentials (SSID, PASSOWRD)
boot.py - POST operations
main.py - main executable
You can mount the fs over network, or
transfer files over webREPL or tools like
AMPY.
@iAyanPahwa/iayanpahwa
CircuitPython
https://github.com/adafruit/circuitpython
Adafruit fork of MicroPython maintained for
educational purpose around boards sell by
Adafruit industries.
Centred Around ATMEL SAMD21 and ESP8266 SoCs.
Various new modules added like capacitive touch
APIs, Sound outputs, USB HID etc.
Bluetooth Low energy support with newly
supported NRF SoC port.
DISCLAIMER: The stunts will be performed by experts
under expert supervision and no matter how many times
you test before, chances of live demo failures are
incalculable :P
SHOW TIME
@iAyanPahwa/iayanpahwa
DEMOS
@iAyanPahwa/iayanpahwa
Temperature and Humidity Measurement
> import dht, machine
> from time import sleep
# Make Pin behave as output
> d = dht.DHT11(machine.Pin(4))
> while True:
# Measure temp and humidity
> d.measure()
# Print Values
> d.temperature()
> d.humidity()
> sleep(2)
@iAyanPahwa/iayanpahwa
NeoPixel
* 1 wire to control multiple LEDs, color and
brightness.
* 8-bit format for Red, Green, Blue
* RRGGBB
* 0-ff or 0-255
NeoPixel
> import machine, neopixel
# Initialize GPIO and number of pixels
> np = neopixel.NeoPixel(machine.Pin(4), 8)
# Set a Pixel color in RGB format
> np[0] = (255, 0, 0)
>np.write()
@iAyanPahwa/iayanpahwa
Thank You
@iAyanPahwa
/iayanpahwa
Ad

Recommended

Reconnaissance de formes
Reconnaissance de formes
ASSAH Esdras Jean Jude
ย 
[unofficial] Pyramid Scene Parsing Network (CVPR 2017)
[unofficial] Pyramid Scene Parsing Network (CVPR 2017)
Shunta Saito
ย 
Movie data analysis
Movie data analysis
Manvi Chandra
ย 
Merger proposal version 9.1 final
Merger proposal version 9.1 final
Walter Patterson
ย 
MNE group analysis presentation @ Biomag 2016 conf.
MNE group analysis presentation @ Biomag 2016 conf.
agramfort
ย 
[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
[PR12] You Only Look Once (YOLO): Unified Real-Time Object Detection
Taegyun Jeon
ย 
Human Activity Recognition
Human Activity Recognition
AshwinGill1
ย 
Word2Vec
Word2Vec
mohammad javad hasani
ย 
PyCon_India_2017_MicroPython_Ayan
PyCon_India_2017_MicroPython_Ayan
Ayan Pahwa
ย 
Raspberry home server
Raspberry home server
Massimiliano Perrone
ย 
HPC DAY 2017 | Prometheus - energy efficient supercomputing
HPC DAY 2017 | Prometheus - energy efficient supercomputing
HPC DAY
ย 
LinuxKit and OpenOverlay
LinuxKit and OpenOverlay
Moby Project
ย 
Java on the GPU: Where are we now?
Java on the GPU: Where are we now?
Dmitry Alexandrov
ย 
HPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY
ย 
HPC DAY 2017 | NVIDIA Volta Architecture. Performance. Efficiency. Availability
HPC DAY 2017 | NVIDIA Volta Architecture. Performance. Efficiency. Availability
HPC DAY
ย 
HPC DAY 2017 | HPE Strategy And Portfolio for AI, BigData and HPC
HPC DAY 2017 | HPE Strategy And Portfolio for AI, BigData and HPC
HPC DAY
ย 
Database Security Threats - MariaDB Security Best Practices
Database Security Threats - MariaDB Security Best Practices
MariaDB plc
ย 
HPC DAY 2017 | Accelerating tomorrow's HPC and AI workflows with Intel Archit...
HPC DAY 2017 | Accelerating tomorrow's HPC and AI workflows with Intel Archit...
HPC DAY
ย 
Model Simulation, Graphical Animation, and Omniscient Debugging with EcoreToo...
Model Simulation, Graphical Animation, and Omniscient Debugging with EcoreToo...
Benoit Combemale
ย 
Libnetwork updates
Libnetwork updates
Moby Project
ย 
HPC DAY 2017 | Altair's PBS Pro: Your Gateway to HPC Computing
HPC DAY 2017 | Altair's PBS Pro: Your Gateway to HPC Computing
HPC DAY
ย 
Latency tracing in distributed Java applications
Latency tracing in distributed Java applications
Constantine Slisenka
ย 
GPU databases - How to use them and what the future holds
GPU databases - How to use them and what the future holds
Arnon Shimoni
ย 
Design patterns in Java - Monitis 2017
Design patterns in Java - Monitis 2017
Arsen Gasparyan
ย 
An Introduction to OMNeT++ 5.1
An Introduction to OMNeT++ 5.1
Alpen-Adria-Universitรคt
ย 
Drive into calico architecture
Drive into calico architecture
Anirban Sen Chowdhary
ย 
Vertx
Vertx
NexThoughts Technologies
ย 
แ„‰แ…ฆแ„‰แ…งแ†ซ1. block chain as a platform
แ„‰แ…ฆแ„‰แ…งแ†ซ1. block chain as a platform
Jay JH Park
ย 
Starting from scratch to build MicroPython.pptx
Starting from scratch to build MicroPython.pptx
Ramprakashs12
ย 
Iot Bootcamp - abridged - part 1
Iot Bootcamp - abridged - part 1
Marcus Tarquinio
ย 

More Related Content

Viewers also liked (20)

PyCon_India_2017_MicroPython_Ayan
PyCon_India_2017_MicroPython_Ayan
Ayan Pahwa
ย 
Raspberry home server
Raspberry home server
Massimiliano Perrone
ย 
HPC DAY 2017 | Prometheus - energy efficient supercomputing
HPC DAY 2017 | Prometheus - energy efficient supercomputing
HPC DAY
ย 
LinuxKit and OpenOverlay
LinuxKit and OpenOverlay
Moby Project
ย 
Java on the GPU: Where are we now?
Java on the GPU: Where are we now?
Dmitry Alexandrov
ย 
HPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY
ย 
HPC DAY 2017 | NVIDIA Volta Architecture. Performance. Efficiency. Availability
HPC DAY 2017 | NVIDIA Volta Architecture. Performance. Efficiency. Availability
HPC DAY
ย 
HPC DAY 2017 | HPE Strategy And Portfolio for AI, BigData and HPC
HPC DAY 2017 | HPE Strategy And Portfolio for AI, BigData and HPC
HPC DAY
ย 
Database Security Threats - MariaDB Security Best Practices
Database Security Threats - MariaDB Security Best Practices
MariaDB plc
ย 
HPC DAY 2017 | Accelerating tomorrow's HPC and AI workflows with Intel Archit...
HPC DAY 2017 | Accelerating tomorrow's HPC and AI workflows with Intel Archit...
HPC DAY
ย 
Model Simulation, Graphical Animation, and Omniscient Debugging with EcoreToo...
Model Simulation, Graphical Animation, and Omniscient Debugging with EcoreToo...
Benoit Combemale
ย 
Libnetwork updates
Libnetwork updates
Moby Project
ย 
HPC DAY 2017 | Altair's PBS Pro: Your Gateway to HPC Computing
HPC DAY 2017 | Altair's PBS Pro: Your Gateway to HPC Computing
HPC DAY
ย 
Latency tracing in distributed Java applications
Latency tracing in distributed Java applications
Constantine Slisenka
ย 
GPU databases - How to use them and what the future holds
GPU databases - How to use them and what the future holds
Arnon Shimoni
ย 
Design patterns in Java - Monitis 2017
Design patterns in Java - Monitis 2017
Arsen Gasparyan
ย 
An Introduction to OMNeT++ 5.1
An Introduction to OMNeT++ 5.1
Alpen-Adria-Universitรคt
ย 
Drive into calico architecture
Drive into calico architecture
Anirban Sen Chowdhary
ย 
Vertx
Vertx
NexThoughts Technologies
ย 
แ„‰แ…ฆแ„‰แ…งแ†ซ1. block chain as a platform
แ„‰แ…ฆแ„‰แ…งแ†ซ1. block chain as a platform
Jay JH Park
ย 
PyCon_India_2017_MicroPython_Ayan
PyCon_India_2017_MicroPython_Ayan
Ayan Pahwa
ย 
HPC DAY 2017 | Prometheus - energy efficient supercomputing
HPC DAY 2017 | Prometheus - energy efficient supercomputing
HPC DAY
ย 
LinuxKit and OpenOverlay
LinuxKit and OpenOverlay
Moby Project
ย 
Java on the GPU: Where are we now?
Java on the GPU: Where are we now?
Dmitry Alexandrov
ย 
HPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY 2017 | HPE Storage and Data Management for Big Data
HPC DAY
ย 
HPC DAY 2017 | NVIDIA Volta Architecture. Performance. Efficiency. Availability
HPC DAY 2017 | NVIDIA Volta Architecture. Performance. Efficiency. Availability
HPC DAY
ย 
HPC DAY 2017 | HPE Strategy And Portfolio for AI, BigData and HPC
HPC DAY 2017 | HPE Strategy And Portfolio for AI, BigData and HPC
HPC DAY
ย 
Database Security Threats - MariaDB Security Best Practices
Database Security Threats - MariaDB Security Best Practices
MariaDB plc
ย 
HPC DAY 2017 | Accelerating tomorrow's HPC and AI workflows with Intel Archit...
HPC DAY 2017 | Accelerating tomorrow's HPC and AI workflows with Intel Archit...
HPC DAY
ย 
Model Simulation, Graphical Animation, and Omniscient Debugging with EcoreToo...
Model Simulation, Graphical Animation, and Omniscient Debugging with EcoreToo...
Benoit Combemale
ย 
Libnetwork updates
Libnetwork updates
Moby Project
ย 
HPC DAY 2017 | Altair's PBS Pro: Your Gateway to HPC Computing
HPC DAY 2017 | Altair's PBS Pro: Your Gateway to HPC Computing
HPC DAY
ย 
Latency tracing in distributed Java applications
Latency tracing in distributed Java applications
Constantine Slisenka
ย 
GPU databases - How to use them and what the future holds
GPU databases - How to use them and what the future holds
Arnon Shimoni
ย 
Design patterns in Java - Monitis 2017
Design patterns in Java - Monitis 2017
Arsen Gasparyan
ย 
Drive into calico architecture
Drive into calico architecture
Anirban Sen Chowdhary
ย 
แ„‰แ…ฆแ„‰แ…งแ†ซ1. block chain as a platform
แ„‰แ…ฆแ„‰แ…งแ†ซ1. block chain as a platform
Jay JH Park
ย 

Similar to Getting Started with Embedded Python: MicroPython and CircuitPython (20)

Starting from scratch to build MicroPython.pptx
Starting from scratch to build MicroPython.pptx
Ramprakashs12
ย 
Iot Bootcamp - abridged - part 1
Iot Bootcamp - abridged - part 1
Marcus Tarquinio
ย 
Micropython for the iot
Micropython for the iot
Jacques Supcik
ย 
Micropython on MicroControllers
Micropython on MicroControllers
Akshai M
ย 
MicroPython&electronics prezentฤcija
MicroPython&electronics prezentฤcija
CRImier
ย 
Get Starte with MicroPython ESP32
Get Starte with MicroPython ESP32
fanghe22
ย 
Get Started with MicroPython ESP32
Get Started with MicroPython ESP32
fanghe22
ย 
Python in the real world : from everyday applications to advanced robotics
Python in the real world : from everyday applications to advanced robotics
Jivitesh Dhaliwal
ย 
Getting Started with MicroPython and LoPy
Getting Started with MicroPython and LoPy
Christian Fรคssler
ย 
IoT: Internet of Things with Python
IoT: Internet of Things with Python
Lelio Campanile
ย 
Programando o ESP8266 com Python
Programando o ESP8266 com Python
Relsi Maron
ย 
Python-in-Embedded-systems.pptx
Python-in-Embedded-systems.pptx
TuynLCh
ย 
Tangible Tools For Teaching With Python
Tangible Tools For Teaching With Python
Tony DiCola
ย 
MicroPython Introduction PUSG July 2017
MicroPython Introduction PUSG July 2017
Ovidiu HOSSU
ย 
Intro to the raspberry pi board
Intro to the raspberry pi board
Thierry Gayet
ย 
DIY Home Smart Lighting System with Micropython - PyCon MY 2018
DIY Home Smart Lighting System with Micropython - PyCon MY 2018
Tegar Imansyah
ย 
Iot bootcamp abridged - part 2
Iot bootcamp abridged - part 2
Marcus Tarquinio
ย 
Introduction to Raspberry Pi and GPIO
Introduction to Raspberry Pi and GPIO
Kris Findlay
ย 
Internet of Energy: "Can python prevent California wildfires?"
Internet of Energy: "Can python prevent California wildfires?"
Chijioke โ€œCJโ€ Ejimuda
ย 
Damien George - Micro Python - CIUUK14
Damien George - Micro Python - CIUUK14
Daniel Lewis
ย 
Starting from scratch to build MicroPython.pptx
Starting from scratch to build MicroPython.pptx
Ramprakashs12
ย 
Iot Bootcamp - abridged - part 1
Iot Bootcamp - abridged - part 1
Marcus Tarquinio
ย 
Micropython for the iot
Micropython for the iot
Jacques Supcik
ย 
Micropython on MicroControllers
Micropython on MicroControllers
Akshai M
ย 
MicroPython&electronics prezentฤcija
MicroPython&electronics prezentฤcija
CRImier
ย 
Get Starte with MicroPython ESP32
Get Starte with MicroPython ESP32
fanghe22
ย 
Get Started with MicroPython ESP32
Get Started with MicroPython ESP32
fanghe22
ย 
Python in the real world : from everyday applications to advanced robotics
Python in the real world : from everyday applications to advanced robotics
Jivitesh Dhaliwal
ย 
Getting Started with MicroPython and LoPy
Getting Started with MicroPython and LoPy
Christian Fรคssler
ย 
IoT: Internet of Things with Python
IoT: Internet of Things with Python
Lelio Campanile
ย 
Programando o ESP8266 com Python
Programando o ESP8266 com Python
Relsi Maron
ย 
Python-in-Embedded-systems.pptx
Python-in-Embedded-systems.pptx
TuynLCh
ย 
Tangible Tools For Teaching With Python
Tangible Tools For Teaching With Python
Tony DiCola
ย 
MicroPython Introduction PUSG July 2017
MicroPython Introduction PUSG July 2017
Ovidiu HOSSU
ย 
Intro to the raspberry pi board
Intro to the raspberry pi board
Thierry Gayet
ย 
DIY Home Smart Lighting System with Micropython - PyCon MY 2018
DIY Home Smart Lighting System with Micropython - PyCon MY 2018
Tegar Imansyah
ย 
Iot bootcamp abridged - part 2
Iot bootcamp abridged - part 2
Marcus Tarquinio
ย 
Introduction to Raspberry Pi and GPIO
Introduction to Raspberry Pi and GPIO
Kris Findlay
ย 
Internet of Energy: "Can python prevent California wildfires?"
Internet of Energy: "Can python prevent California wildfires?"
Chijioke โ€œCJโ€ Ejimuda
ย 
Damien George - Micro Python - CIUUK14
Damien George - Micro Python - CIUUK14
Daniel Lewis
ย 
Ad

More from Ayan Pahwa (6)

Kicad 101
Kicad 101
Ayan Pahwa
ย 
IoT with circuitpython | CloudBadge
IoT with circuitpython | CloudBadge
Ayan Pahwa
ย 
MQTT on Raspberry Pi - Basics
MQTT on Raspberry Pi - Basics
Ayan Pahwa
ย 
Basics of Embedded Systems / Hardware - Architectures
Basics of Embedded Systems / Hardware - Architectures
Ayan Pahwa
ย 
Using Linux in commercial products + Yocto Project touchdown
Using Linux in commercial products + Yocto Project touchdown
Ayan Pahwa
ย 
Reverse engineering IoT Devices
Reverse engineering IoT Devices
Ayan Pahwa
ย 
Kicad 101
Kicad 101
Ayan Pahwa
ย 
IoT with circuitpython | CloudBadge
IoT with circuitpython | CloudBadge
Ayan Pahwa
ย 
MQTT on Raspberry Pi - Basics
MQTT on Raspberry Pi - Basics
Ayan Pahwa
ย 
Basics of Embedded Systems / Hardware - Architectures
Basics of Embedded Systems / Hardware - Architectures
Ayan Pahwa
ย 
Using Linux in commercial products + Yocto Project touchdown
Using Linux in commercial products + Yocto Project touchdown
Ayan Pahwa
ย 
Reverse engineering IoT Devices
Reverse engineering IoT Devices
Ayan Pahwa
ย 
Ad

Recently uploaded (20)

ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
Muhammad Rizwan Akram
ย 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
ย 
Murdledescargadarkweb.pdfvolumen1 100 elementary
Murdledescargadarkweb.pdfvolumen1 100 elementary
JorgeSemperteguiMont
ย 
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Alliance
ย 
Bridging the divide: A conversation on tariffs today in the book industry - T...
Bridging the divide: A conversation on tariffs today in the book industry - T...
BookNet Canada
ย 
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Puppy jhon
ย 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
ย 
โ€œFrom Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
โ€œFrom Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
Edge AI and Vision Alliance
ย 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
ย 
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
AmirStern2
ย 
โ€œAddressing Evolving AI Model Challenges Through Memory and Storage,โ€ a Prese...
โ€œAddressing Evolving AI Model Challenges Through Memory and Storage,โ€ a Prese...
Edge AI and Vision Alliance
ย 
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Safe Software
ย 
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Alliance
ย 
Artificial Intelligence in the Nonprofit Boardroom.pdf
Artificial Intelligence in the Nonprofit Boardroom.pdf
OnBoard
ย 
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
Safe Software
ย 
Data Validation and System Interoperability
Data Validation and System Interoperability
Safe Software
ย 
Edge-banding-machines-edgeteq-s-200-en-.pdf
Edge-banding-machines-edgeteq-s-200-en-.pdf
AmirStern2
ย 
June Patch Tuesday
June Patch Tuesday
Ivanti
ย 
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
SOFTTECHHUB
ย 
Supporting the NextGen 911 Digital Transformation with FME
Supporting the NextGen 911 Digital Transformation with FME
Safe Software
ย 
ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
ENERGY CONSUMPTION CALCULATION IN ENERGY-EFFICIENT AIR CONDITIONER.pdf
Muhammad Rizwan Akram
ย 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
ย 
Murdledescargadarkweb.pdfvolumen1 100 elementary
Murdledescargadarkweb.pdfvolumen1 100 elementary
JorgeSemperteguiMont
ย 
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Alliance
ย 
Bridging the divide: A conversation on tariffs today in the book industry - T...
Bridging the divide: A conversation on tariffs today in the book industry - T...
BookNet Canada
ย 
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Puppy jhon
ย 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
ย 
โ€œFrom Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
โ€œFrom Enterprise to Makers: Driving Vision AI Innovation at the Extreme Edge,...
Edge AI and Vision Alliance
ย 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
ย 
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
AmirStern2
ย 
โ€œAddressing Evolving AI Model Challenges Through Memory and Storage,โ€ a Prese...
โ€œAddressing Evolving AI Model Challenges Through Memory and Storage,โ€ a Prese...
Edge AI and Vision Alliance
ย 
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Safe Software
ย 
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Seminar: Perspectives on Passkeys & Consumer Adoption.pptx
FIDO Alliance
ย 
Artificial Intelligence in the Nonprofit Boardroom.pdf
Artificial Intelligence in the Nonprofit Boardroom.pdf
OnBoard
ย 
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
Safe Software
ย 
Data Validation and System Interoperability
Data Validation and System Interoperability
Safe Software
ย 
Edge-banding-machines-edgeteq-s-200-en-.pdf
Edge-banding-machines-edgeteq-s-200-en-.pdf
AmirStern2
ย 
June Patch Tuesday
June Patch Tuesday
Ivanti
ย 
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
SOFTTECHHUB
ย 
Supporting the NextGen 911 Digital Transformation with FME
Supporting the NextGen 911 Digital Transformation with FME
Safe Software
ย 

Getting Started with Embedded Python: MicroPython and CircuitPython