SlideShare une entreprise Scribd logo
1  sur  151
Télécharger pour lire hors ligne
How to build
Open Hardware Robot
with Arduino, RaspberryPi and Hot Glue
Tomáš Jukin
@Inza
Tomáš Jukin
@Inza
www.juicymo.cz
@JuicymoCZ
#Probee
True evolution…
True evolution…
GDG ohwHack 2014 mDevCamp 2016
True evolution…
GDG ohwHack 2014 mDevCamp 2016
Robotics 101
Robotics 101
Micro-Computer
vs.
Micro-Controller
Robotics 101
Micro-Computer
vs.
Micro-Controller
Robotics 101
Micro-Computer
vs.
Micro-Controller
Robotics 101
Micro-Computer
vs.
Micro-Controller
Voltage: 3.3V
Flash: SD card
RAM: 512 MB (CPU & GPU)
CPU: ARM11 (BCM2835 SoC)
Clock: 700 MHz
GPIO: 40 pin
HDMI, Ethernet
RaspberryPi 1
B+
Arduino
UNO
Voltage: 5V
Flash: 32KB (-0.5 bootloader)
SRAM: 2KB
EEPROM: 1KB
Clock: 16 MHz
Digital I/O: 14/6 PWM
Analog In: 6
Robotics 101
ways of communication
Robotics 101
IIC (i2c, I2C, I2C)
Inter-Inter Circuit, 2 wires, <128 devices, <2m
ways of communication
Robotics 101
IIC (i2c, I2C, I2C)
Inter-Inter Circuit, 2 wires, <128 devices, <2m
ways of communication
Serial Peripheral Interface, N+3 wires, N devices
SPI
Robotics 101
IIC (i2c, I2C, I2C)
Inter-Inter Circuit, 2 wires, <128 devices, <2m
ways of communication
Serial Peripheral Interface, N+3 wires, N devices
Universal Asynchronous Receiver/Transmitter, 2 wires, 2 devices, <20m
SPI
UART
Robotics 101
IIC (i2c, I2C, I2C)
Inter-Inter Circuit, 2 wires, <128 devices, <2m
ways of communication
Serial Peripheral Interface, N+3 wires, N devices
Universal Asynchronous Receiver/Transmitter, 2 wires, 2 devices, <20m
Full Serial Line, 9 wires, 2 devices, <20m
RS-232 (COM port)
SPI
UART
Robotics 101
IIC (i2c, I2C, I2C)
Inter-Inter Circuit, 2 wires, <128 devices, <2m
ways of communication
Serial Peripheral Interface, N+3 wires, N devices
Universal Asynchronous Receiver/Transmitter, 2 wires, 2 devices, <20m
Full Serial Line, 9 wires, 2 devices, <20m
RS-232 (COM port)
Industry, 2 wires, <32 devices, <1200m
RS-485 (EIA-485)
SPI
UART
Robotics 101
IIC (i2c, I2C, I2C)
Inter-Inter Circuit, 2 wires, <128 devices, <2m
ways of communication
Serial Peripheral Interface, N+3 wires, N devices
SPI
UART
Industry, 2 wires, <32 devices, <1200m
RS-485 (EIA-485)
Universal Asynchronous Receiver/Transmitter, 2 wires, 2 devices, <20m
Full Serial Line, 9 wires, 2 devices, <20m
RS-232 (COM port)
What does a
4 wheels self driving car robot
consist of?
1x RaspberryPi 1 B+ Starter Set https://goo.gl/jaTY70
1x Chinese 4WD Car Kit with Funduino UNO http://goo.gl/qetuW5
5x Ultrasonic Sensor HC-SR04 http://goo.gl/YojTTp
1x Wi-Fi dongle D-Link DWA-127 https://goo.gl/9d9BPo
1x Arduino Micro https://goo.gl/yjVqgC
1x I2C Level Converter http://goo.gl/9i4jCK
1x RTC module DS1307 http://goo.gl/esKm7t
1x PIR sensor HC-SR501 http://goo.gl/LyYGmb
1x 4D Touch TFT Display 4DPi-35 Rev. 1 http://goo.gl/RWs7rI
1x Skewers
1x Hot Glue
*plus PiCamera and PowerBank to power Pi… (and cables)
http://goo.gl/tnXteh
The Idea
I2C
I2C
PWM
I2C
PWM12V
I2CUSB
PWM12V
I2C
SPI
USB
PWM12V
I2C
SPI
USB
PWM
PWM12V
I2C
SPI
USB
PWM
PWM12V
I2C
SPI
USB
PWM
PWM12V
I2C
SPI
USB
I2C
PWM
PWM12V
I2C
SPI
USB
I2C
PWM
PWM12V
I2C
SPI
USB
I2C
PWM
PWM12V
I2C
SPI
USB
I2C
PWM
PWM12V
I2C
PWM
I2C
5V USB 7V
5V3.3V
The Heart
The Heart
The Heart
Hardware
The Heart
Hardware
HAL
The Heart
Hardware
HAL
Events
The Heart
Hardware
HAL
Events
Pre-Emptive
Multi-Tasking
The Heart
Hardware
HAL
Events
Pre-Emptive
Multi-Tasking Config
How do we develop in
Arduino?
Wiring / Processing
C / C++
C / C++
C / C++
5 Circles of Hell
5 Circles of Hell
in Arduino
5 Circles of Hell
in Arduino
.ino includes
5 Circles of Hell
in Arduino
.ino includes
LCD_i2c.h
5 Circles of Hell
in Arduino
.ino includes
LCD_i2c.h
Crappy China goods
5 Circles of Hell
in Arduino
.ino includes
LCD_i2c.h
Crappy China goods
HW bugs
5 Circles of Hell
in Arduino
.ino includes
LCD_i2c.h
Crappy China goods
HW bugs
The need of switch
The Heart
v0 - Procedural (by MacGyver on ohwHack)
The Heart
v0 - Procedural (by MacGyver on ohwHack)
The Heart
v0.5 - “Spagetka” (was to ugly to Git -> lost :-(…)
v0 - Procedural (by MacGyver on ohwHack)
The Heart
v0.5 - “Spagetka” (was to ugly to Git -> lost :-(…)
v1 - “Spagetti MAS” (in Git repo)
v0 - Procedural (by MacGyver on ohwHack)
The Heart
v0.5 - “Spagetka” (was to ugly to Git -> lost :-(…)
v1 - “Spagetti MAS” (in Git repo)
v2 - “The Platform” (in Git repo, in progress)
v0 - Procedural (by MacGyver on ohwHack)
The Heart
v0.5 - “Spagetka” (was to ugly to Git -> lost :-(…)
v1 - “Spagetti MAS” (in Git repo)
v2 - “The Platform” (in Git repo, in progress)
https://github.com/Juicymo/probee
http://goo.gl/lZuAzn
https://goo.gl/OhNByp
I2C
https://goo.gl/QzYRjs
https://goo.gl/lG0ggl
I2C
The Brain
The Brain
How do we develop
for RaspberryPi?
In Ruby
But not only. It is a full
featured* Linux.
But not only. It is a full
featured* Linux.
*running on ARM… :-(
5 Circles of Hell
5 Circles of Hell
in RaspberryPi
5 Circles of Hell
in RaspberryPi
USB driven computer
5 Circles of Hell
in RaspberryPi
USB driven computer
Unstable
5 Circles of Hell
in RaspberryPi
USB driven computer
Unstable
More features madness
5 Circles of Hell
in RaspberryPi
USB driven computer
Unstable
More features madness
Wi-Fi dongle
5 Circles of Hell
in RaspberryPi
USB driven computer
Unstable
More features madness
Unstable!!!
Wi-Fi dongle
Multi-Agent System
The Brain
build on a
Actor-based concurrent
object framework in Ruby
https://github.com/Juicymo/probee
The Brain
Raspbian
The Brain
Raspbian
rvm
The Brain
Raspbian
rvm
ruby
The Brain
Raspbian
rvm
ruby
celluloid
The Brain
Raspbian
rvm
ruby
celluloid
agens
The Brain
Raspbian
rvm
ruby
celluloid
agens
probee MAS
The Brain
Raspbian
rvm
ruby
celluloid
agens
probee MAS
https://github.com/Juicymo/probee
https://rubygems.org/gems/agens
https://github.com/celluloid/celluloid
https://rvm.io
The Brain
ObjectRuby OOP
The Brain
Object
Cell
Ruby OOP
Celluloid
The Brain
Object
Cell
Actor
Ruby OOP
Celluloid
Celluloid
The Brain
Object
Cell
Actor
Agent
Ruby OOP
Celluloid
Celluloid
agens
The Brain
Object
Cell
Actor
Agent
MovementAgent
Ruby OOP
Celluloid
Celluloid
agens
probee
The Brain
MovementAgent
Probee MAS
The Brain
Motors
MovementAgent
Probee MAS
The Brain
Motors
SteeringAgent
MovementAgent
Probee MAS
The Brain
Motors
SensorsSteeringAgent
MovementAgent
Probee MAS
The Brain
Motors
Sensors
CollisionAgent
SteeringAgent
MovementAgent
Probee MAS
The Brain
Motors
Sensors
CollisionAgent
SteeringAgent
MovementAgent
Probee MAS
The Brain
Motors
Sensors
CollisionAgent
SteeringAgent
MovementAgent
Probee MAS
Simple Agents can
perform complex tasks
The Brain
The Brain
How to make AI Logic
Scripting
HFSM Heuristics
MAS GA ANN
HTN
How to make AI Logic
Scripting
HFSM Heuristics
MAS GA ANN
HTN
?
HFSM
Movement FSM
Stop Drive Slowly Drive Fast
HFSM
Movement FSM
Stop Drive Slowly Drive Fast
Turn Turret FSM
Stop Scan Target
HFSM
Movement FSM
Stop Drive Slowly Drive Fast
Turn Turret FSM
Stop Scan Target
How to combine them??
HFSM
Movement FSM
Stop Drive Slowly Drive Fast
Turn Turret FSM
Stop Scan Target
How to combine them??
Modularity sucks too…
How to make AI Logic
Scripting
HFSM Heuristics
MAS GA ANN
HTN
?
How to make AI Logic
Scripting
HFSM Heuristics
MAS GA ANN
HTN
Behavior Trees
Behavior Trees
http://aigamedev.com/open/article/bt-overview/
http://behavior3js.guineashots.com/
http://aigamedev.com/open/article/behavior-trees-part1/
Neural Nets
HFSM
MAS
HTN
Behavior Trees
https://github.com/Inza/agens
https://en.wikipedia.org/wiki/Multi-agent_system
https://github.com/aasm/aasm
https://en.wikipedia.org/wiki/Finite-state_machine
https://github.com/Maumagnaguagno/HyperTensioN
https://en.wikipedia.org/wiki/Hierarchical_task_network
https://github.com/jvoegele/behavior_tree
https://en.wikipedia.org/wiki/Behavior_tree
https://github.com/SergioFierens/ai4r
https://en.wikipedia.org/wiki/Artificial_neural_network
Questions?
Tomáš Jukin
@Inza
www.juicymo.cz
@JuicymoCZ

Contenu connexe

Tendances

G1-component computer(processor)
G1-component computer(processor)G1-component computer(processor)
G1-component computer(processor)
nurazrinmalik
 

Tendances (20)

Python in raspberry pi
Python in raspberry piPython in raspberry pi
Python in raspberry pi
 
Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !Linux+sensor+device-tree+shell=IoT !
Linux+sensor+device-tree+shell=IoT !
 
Mainline kernel on ARM Tegra20 devices that are left behind on 2.6 kernels
Mainline kernel on ARM Tegra20 devices that are left behind on 2.6 kernelsMainline kernel on ARM Tegra20 devices that are left behind on 2.6 kernels
Mainline kernel on ARM Tegra20 devices that are left behind on 2.6 kernels
 
Raspberry Pi - HW/SW Application Development
Raspberry Pi - HW/SW Application DevelopmentRaspberry Pi - HW/SW Application Development
Raspberry Pi - HW/SW Application Development
 
Prototipare col raspberry pi
Prototipare col raspberry piPrototipare col raspberry pi
Prototipare col raspberry pi
 
pcDuino Presentation at SparkFun
pcDuino Presentation at SparkFunpcDuino Presentation at SparkFun
pcDuino Presentation at SparkFun
 
Innovation with pcDuino
Innovation with pcDuinoInnovation with pcDuino
Innovation with pcDuino
 
Jtag
JtagJtag
Jtag
 
[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218
 
nodebots presentation @seekjobs
nodebots presentation @seekjobsnodebots presentation @seekjobs
nodebots presentation @seekjobs
 
Raspberry Pi and Amateur Radio - 2020 update
Raspberry Pi and Amateur Radio - 2020 updateRaspberry Pi and Amateur Radio - 2020 update
Raspberry Pi and Amateur Radio - 2020 update
 
G1-component computer(processor)
G1-component computer(processor)G1-component computer(processor)
G1-component computer(processor)
 
pcDuino tech talk at Carnegie Mellon University 10/14/2014
pcDuino tech talk at Carnegie Mellon University 10/14/2014pcDuino tech talk at Carnegie Mellon University 10/14/2014
pcDuino tech talk at Carnegie Mellon University 10/14/2014
 
Embedded Recipes 2019 - Introduction to JTAG debugging
Embedded Recipes 2019 - Introduction to JTAG debuggingEmbedded Recipes 2019 - Introduction to JTAG debugging
Embedded Recipes 2019 - Introduction to JTAG debugging
 
Manual usuario - Inspur cx-h81-m1 v2 0
Manual usuario  - Inspur cx-h81-m1 v2 0Manual usuario  - Inspur cx-h81-m1 v2 0
Manual usuario - Inspur cx-h81-m1 v2 0
 
Scratch pcduino
Scratch pcduinoScratch pcduino
Scratch pcduino
 
Introduction to pcDuino
Introduction to pcDuinoIntroduction to pcDuino
Introduction to pcDuino
 
Micro Python で組み込み Python
Micro Python で組み込み PythonMicro Python で組み込み Python
Micro Python で組み込み Python
 
Internet of Things
Internet of ThingsInternet of Things
Internet of Things
 
SMP Implementation for OpenBSD/sgi [Japanese Edition]
SMP Implementation for OpenBSD/sgi [Japanese Edition]SMP Implementation for OpenBSD/sgi [Japanese Edition]
SMP Implementation for OpenBSD/sgi [Japanese Edition]
 

En vedette

En vedette (20)

MQTT is your best friend
MQTT is your best friendMQTT is your best friend
MQTT is your best friend
 
AI State of Play Dec 2016 NYC
AI State of Play Dec 2016 NYCAI State of Play Dec 2016 NYC
AI State of Play Dec 2016 NYC
 
Bao cao Ma nguon mo
Bao cao Ma nguon moBao cao Ma nguon mo
Bao cao Ma nguon mo
 
Deep Learning Jeff-Shomaker_1-20-17_Final_
Deep Learning Jeff-Shomaker_1-20-17_Final_Deep Learning Jeff-Shomaker_1-20-17_Final_
Deep Learning Jeff-Shomaker_1-20-17_Final_
 
H2O Deep Water - Making Deep Learning Accessible to Everyone
H2O Deep Water - Making Deep Learning Accessible to EveryoneH2O Deep Water - Making Deep Learning Accessible to Everyone
H2O Deep Water - Making Deep Learning Accessible to Everyone
 
Introduzione Deep Learning & TensorFlow
Introduzione Deep Learning & TensorFlowIntroduzione Deep Learning & TensorFlow
Introduzione Deep Learning & TensorFlow
 
TensorFlowの使い方(in Japanese)
TensorFlowの使い方(in Japanese)TensorFlowの使い方(in Japanese)
TensorFlowの使い方(in Japanese)
 
How Will AI Change the Role of the Data Scientist?
How Will AI Change the Role of the Data Scientist?How Will AI Change the Role of the Data Scientist?
How Will AI Change the Role of the Data Scientist?
 
Innovatiemarkt 2017: Machines are the new digital natives
Innovatiemarkt 2017: Machines are the new digital nativesInnovatiemarkt 2017: Machines are the new digital natives
Innovatiemarkt 2017: Machines are the new digital natives
 
Fluid ai overview pitch deck
Fluid ai overview pitch deckFluid ai overview pitch deck
Fluid ai overview pitch deck
 
AI in Healthcare 2017
AI in Healthcare 2017AI in Healthcare 2017
AI in Healthcare 2017
 
Deep Water - GPU Deep Learning for H2O - Arno Candel
Deep Water - GPU Deep Learning for H2O - Arno CandelDeep Water - GPU Deep Learning for H2O - Arno Candel
Deep Water - GPU Deep Learning for H2O - Arno Candel
 
AI Playing Go and Driving Cars, What’s Next?
AI Playing Go and Driving Cars, What’s Next?AI Playing Go and Driving Cars, What’s Next?
AI Playing Go and Driving Cars, What’s Next?
 
TensorFlow Tutorial
TensorFlow TutorialTensorFlow Tutorial
TensorFlow Tutorial
 
Exploring the Momentum: The Intersection of AI and HPC
Exploring the Momentum: The Intersection of AI and HPCExploring the Momentum: The Intersection of AI and HPC
Exploring the Momentum: The Intersection of AI and HPC
 
Tracxn Big Data Analytics Landscape Report, June 2016
Tracxn Big Data Analytics Landscape Report, June 2016Tracxn Big Data Analytics Landscape Report, June 2016
Tracxn Big Data Analytics Landscape Report, June 2016
 
AI Predictions 2017
AI Predictions 2017AI Predictions 2017
AI Predictions 2017
 
H2O & Tensorflow - Fabrizio
H2O & Tensorflow - Fabrizio H2O & Tensorflow - Fabrizio
H2O & Tensorflow - Fabrizio
 
Gentlest Introduction to Tensorflow - Part 3
Gentlest Introduction to Tensorflow - Part 3Gentlest Introduction to Tensorflow - Part 3
Gentlest Introduction to Tensorflow - Part 3
 
Deep Water - Bringing Tensorflow, Caffe, Mxnet to H2O
Deep Water - Bringing Tensorflow, Caffe, Mxnet to H2ODeep Water - Bringing Tensorflow, Caffe, Mxnet to H2O
Deep Water - Bringing Tensorflow, Caffe, Mxnet to H2O
 

Similaire à How to build Open Hardware self-navigating car robot

tm.gdg.ro: Android on Raspberry Pi
tm.gdg.ro: Android on Raspberry Pitm.gdg.ro: Android on Raspberry Pi
tm.gdg.ro: Android on Raspberry Pi
Alexandru IOVANOVICI
 

Similaire à How to build Open Hardware self-navigating car robot (20)

When a robot is smart enough?
When a robot is smart enough?When a robot is smart enough?
When a robot is smart enough?
 
Costruiamo un Rover in 60 minuti
Costruiamo un Rover in 60 minutiCostruiamo un Rover in 60 minuti
Costruiamo un Rover in 60 minuti
 
tm.gdg.ro: Android on Raspberry Pi
tm.gdg.ro: Android on Raspberry Pitm.gdg.ro: Android on Raspberry Pi
tm.gdg.ro: Android on Raspberry Pi
 
More Mad Science for the Commodore 64 (ECCC 2015)
More Mad Science for the Commodore 64 (ECCC 2015)More Mad Science for the Commodore 64 (ECCC 2015)
More Mad Science for the Commodore 64 (ECCC 2015)
 
Rapid IoT prototyping with mruby
Rapid IoT prototyping with mrubyRapid IoT prototyping with mruby
Rapid IoT prototyping with mruby
 
Developing Applications for Beagle Bone Black, Raspberry Pi and SoC Single Bo...
Developing Applications for Beagle Bone Black, Raspberry Pi and SoC Single Bo...Developing Applications for Beagle Bone Black, Raspberry Pi and SoC Single Bo...
Developing Applications for Beagle Bone Black, Raspberry Pi and SoC Single Bo...
 
Raspberry Pi 2 + Windows 10 IoT Core + Node.js
Raspberry Pi 2 + Windows 10 IoT Core + Node.jsRaspberry Pi 2 + Windows 10 IoT Core + Node.js
Raspberry Pi 2 + Windows 10 IoT Core + Node.js
 
Raspberry pi technical documentation
Raspberry pi technical documentationRaspberry pi technical documentation
Raspberry pi technical documentation
 
TDD in deeply embedded system (Arduino) with TAP
TDD in deeply embedded system (Arduino) with TAPTDD in deeply embedded system (Arduino) with TAP
TDD in deeply embedded system (Arduino) with TAP
 
2015 02 28 DotNetSpain IoT Fight
2015 02 28 DotNetSpain IoT Fight2015 02 28 DotNetSpain IoT Fight
2015 02 28 DotNetSpain IoT Fight
 
Introduction to Internet of Things Hardware
Introduction to Internet of Things HardwareIntroduction to Internet of Things Hardware
Introduction to Internet of Things Hardware
 
Let's begin io t with $10
Let's begin io t with $10Let's begin io t with $10
Let's begin io t with $10
 
[German] Boards für das IoT-Prototyping
[German] Boards für das IoT-Prototyping[German] Boards für das IoT-Prototyping
[German] Boards für das IoT-Prototyping
 
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
 
Single Board Computers & Raspberry Pi Basics
Single Board Computers & Raspberry Pi BasicsSingle Board Computers & Raspberry Pi Basics
Single Board Computers & Raspberry Pi Basics
 
Tac Presentation October 72014- Raspberry PI
Tac Presentation October 72014- Raspberry PITac Presentation October 72014- Raspberry PI
Tac Presentation October 72014- Raspberry PI
 
Johnny-Five
Johnny-FiveJohnny-Five
Johnny-Five
 
Connected hardware for Software Engineers 101
Connected hardware for Software Engineers 101Connected hardware for Software Engineers 101
Connected hardware for Software Engineers 101
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Multipilot pres-ufficiale last 2
Multipilot pres-ufficiale last 2Multipilot pres-ufficiale last 2
Multipilot pres-ufficiale last 2
 

Plus de Tomáš Jukin

Plus de Tomáš Jukin (12)

How you can build a robot Dr. Strangelove would approve
How you can build a robot Dr. Strangelove would approveHow you can build a robot Dr. Strangelove would approve
How you can build a robot Dr. Strangelove would approve
 
Internet of Things & Open HW for Web Developers
Internet of Things & Open HW for Web DevelopersInternet of Things & Open HW for Web Developers
Internet of Things & Open HW for Web Developers
 
Arduino Neural Networks
Arduino Neural NetworksArduino Neural Networks
Arduino Neural Networks
 
Multi-Agent Systems on Arduino & iOS
Multi-Agent Systems on Arduino & iOSMulti-Agent Systems on Arduino & iOS
Multi-Agent Systems on Arduino & iOS
 
CoreData - there is an ORM you can like!
CoreData - there is an ORM you can like!CoreData - there is an ORM you can like!
CoreData - there is an ORM you can like!
 
Few tips for great presentations
Few tips for great presentationsFew tips for great presentations
Few tips for great presentations
 
Bezpečnost platformy iOS
Bezpečnost platformy iOSBezpečnost platformy iOS
Bezpečnost platformy iOS
 
ONscreen vs. OFFscreen rendering v iOS - For-Mobile 3/2013
ONscreen vs. OFFscreen rendering v iOS - For-Mobile 3/2013ONscreen vs. OFFscreen rendering v iOS - For-Mobile 3/2013
ONscreen vs. OFFscreen rendering v iOS - For-Mobile 3/2013
 
MVC na iOS - For-Mobile 2/2013
MVC na iOS - For-Mobile 2/2013MVC na iOS - For-Mobile 2/2013
MVC na iOS - For-Mobile 2/2013
 
iOS6 & CocoaPods - For-Mobile 9/2012
iOS6 & CocoaPods - For-Mobile 9/2012iOS6 & CocoaPods - For-Mobile 9/2012
iOS6 & CocoaPods - For-Mobile 9/2012
 
Make the code work for you with #git
Make the code work for you with #gitMake the code work for you with #git
Make the code work for you with #git
 
Tools beyond ruby on rails
Tools beyond ruby on railsTools beyond ruby on rails
Tools beyond ruby on rails
 

Dernier

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Dernier (20)

Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

How to build Open Hardware self-navigating car robot