SlideShare une entreprise Scribd logo
1  sur  39
Building a robot with .Net Micro
           Framework
           Ducas Francis
           SC @ Readify
NetMF
• Open Source Platform for small embedded
  applications
• Runs on devices with a 32-bit processor and as
  little as 64K RAM
• Provides the efficiency of creating and
  maintaining devices in managed code
Why NetMF?
•   Use Visual Studio as the IDE
•   Program in C#
•   Same code runs on any NetMF device   with minimal changes


•   Full debugging capabilities
    –   Emulator
    –   Breakpoints
    –   Stepping
    –   Variables
    –   Stack Traces
• Includes many bus drivers
• Managed Code with Garbage Collection
What about Arduino?
• Open Source Platform for electronics prototyping
• Uses the Arduino programming language (C++
  based) and Arduino IDE.
• Benefits
  –   Inexpensive
  –   Cross-Platform Software
  –   Nice IDE
  –   Open Source and Extensible Software (C++ or AVR-C)
  –   Open Source and Extensible Hardware
      (ATMEGA8/168)
NetMF Hardware - Netduino
• Pro – Atmel ARM7    • Go – STMicro Cortex-
  48MHz 128KB Flash     M4 168MHz 384KB
  60KB RAM              Flash 100KB RAM
NetMF Harware - GHI
• FEZ Spider – EMX ARM7 72MHz   • FEZ Cerberus/Cerbuino/Cerb40 –
  3000KB Flash 12000KB RAM        OSHW Cortex-M4 168MHz 300KB
                                  Flash 112KB RAM




• Fez Hydra – OSHW ARM9
  240MHz 3000KB Flash 12000KB   • FEZ Panda II - USBizi-100 ARM7
  RAM                             72MHz 148KB Flash 62KB RAM
Arduino Compatible vs Gadgeteer
• Compatible with          • Sockets over Pins
  Arduino shields          • Modules are pre-built
• Pins over Sockets        • Not all boards have all
• Easy to prototype with     socket types
  breadboards and          • Usually have more
  breakout boards            powerful processors
• More flexible for
  electronics projects
What Are We Building
• Let’s see…
Fez Panda II
Tamiya Dual Motor Gearbox
Tamiya Dual Motor Gearbox
Tamiya Track and Wheel Set
Tamiya Plate Set
Dual Motor Driver
Low Current Motors
Ultrasonic Range Finder
Accelerometer
What you Need
•   Mainboard           • FEZ Panda II $50
•   Motors              • SolarRobotics RM3 2x $4
•   Gearboxes           • Tamiya Double Gearbox (70168) $15
•   Wheels              • Tamiya Track and Wheel Set (70100) $15
•   Housing/Plates      • Tamiya Universal Plate Set (70157) $10
•   Batteries           • 4xAAA + 1x9V $10
•   Motor Driver        • 1A Dual TB6612FNG H Bridge (ROB-
                          09457) $10
• Distance Sensor       • MaxBotix LV-EZ0 Ultrarosnic Range Finder
                          (SEN-08502) $35
• Accelerometer         • Triple Axis Accelerometer ADXL345 (SEN-
                          …) $30

                     Total: ~$150
Or You Could Just Buy a Kit…
• FEZ Mini Robot Kit $120   • RP5 Tank Chasis +
                              Driver $120
What you need to know
• *Basic* electronics
• How to use a soldering iron
• How to cut a little code in C#
NetMF 101
Net MF 101 – What do I have?
• Multithreading
• GC
• Flash access
NetMF 101 – What don’t I have?
• Generics
• A lot of RAM…
NetMF 101
NetMF 101 - IO
•   Digital IO
•   Interrupts
•   Analog IO
•   UART
•   SPI
•   I2C
•   PWM
NetMF 101 – Digital IO
• Pin can either be set to HIGH (true) or LOW
  (false)
• OutputPort.Write(bool)
• bool InputPort.Read()

• Demo - LED
NetMF 101 - Interrupts
• Act when the signal changes from LOW to
  HIGH and vice-versa
• NativeEventHandler InterruptPort.OnInterrupt

• Demo - Bumper
NETMF 101 – Analog IO
•   Read a voltage – not just HIGH/LOW
•   Not part of core NetMF
•   byte AnalogIn.Read()
•   AnalogOut.Set(int value)
•   AnalogOut.Set(byte[] data, int offset, int
    count, int dataRate)

• Demo – Ultrasonic Distance Finder
NETMF 101 – UART Serial Ports
• Use 2 Pins to Communicate between 2 Devices
   – TXD
   – RXD
• Wire to the opposite on each device
   – RXD => TXD
   – TXD => RXD
• new SerialPort(“COM1”, …)
• SerialPort.Read(byte*+, …)
• SerialPort.Write(byte*+, …)

• Demo - XBee
NetMF 101 – I2C
• Use 2 Pins to communicate between master
  and multiple slave devices.
  – SCL
  – SDA
• Provides a bus and ability to define
  configuration and communicate using
  transactions

• Demo - Accelerometer
NetMF 101 - PWM
• Pulse Width Modulation
• Emulates a wave with given frequency and
  duty cycle
• Motors should be given higher frequencies
• PWM.Set(int freqHz, int dutyCycle)

• Demo - Piezo
Building Tank Bot..
•   Build the gearbox
•   Attach the gearbox to the frame and wheels
•   Attach the main board to the frame
•   Attach battery holders to the frame
•   Solder pins to the prototyping board, distance sensor,
    motor driver and accelerometer
•   Solder wires to the motors
•   Attach the distance sensor to the frame
•   Wire the motor driver, distance sensor and
    accelerometer to the prototyping board
•   Write some code…
Test Bots
• Distance Sensor
• Accelerometer
• Motor Driver
Discovery Bot
while (something within 30cm of front)
     avoid

go forward
Safe Discovery Bot
while (bot is tipping)
     avoid

while (something within 30cm of front)
     avoid

go forward
Where to buy…


EOFY2012
Where to learn more…
• tinyclr.com
• netmf.com
• letsmakerobots.com

• sparkfun.com
• bildr.com

• mbed.org
With thanks to our sponsors
Please complete your feedback
  forms, and return them to the
registration desk for a chance
                       to win a
                  Nokia Lumia

Contenu connexe

Tendances

Tendances (20)

[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218[5]投影片 futurewad樹莓派研習會 141218
[5]投影片 futurewad樹莓派研習會 141218
 
IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019IoT Hands-On-Lab, KINGS, 2019
IoT Hands-On-Lab, KINGS, 2019
 
Amp si3540 specsheet
Amp si3540 specsheetAmp si3540 specsheet
Amp si3540 specsheet
 
Esp8266 NodeMCU
Esp8266 NodeMCUEsp8266 NodeMCU
Esp8266 NodeMCU
 
Introduction to Hardware Design Using KiCAD
Introduction to Hardware Design Using KiCADIntroduction to Hardware Design Using KiCAD
Introduction to Hardware Design Using KiCAD
 
Nodemcu - introduction
Nodemcu - introductionNodemcu - introduction
Nodemcu - introduction
 
Aewin embedded em6331 amd lx800_sbc
Aewin embedded em6331 amd lx800_sbcAewin embedded em6331 amd lx800_sbc
Aewin embedded em6331 amd lx800_sbc
 
Introduction to Arduino and Circuits
Introduction to Arduino and CircuitsIntroduction to Arduino and Circuits
Introduction to Arduino and Circuits
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
 
Pres
PresPres
Pres
 
Introduction to Internet of Things Hardware
Introduction to Internet of Things HardwareIntroduction to Internet of Things Hardware
Introduction to Internet of Things Hardware
 
Internet of Things
Internet of ThingsInternet of Things
Internet of Things
 
Thotcon 0x8 - Hardware Hacking on a Budget
Thotcon 0x8 - Hardware Hacking on a BudgetThotcon 0x8 - Hardware Hacking on a Budget
Thotcon 0x8 - Hardware Hacking on a Budget
 
Insecure Obsolete and Trivial - The Real IOT
Insecure Obsolete and Trivial - The Real IOTInsecure Obsolete and Trivial - The Real IOT
Insecure Obsolete and Trivial - The Real IOT
 
Esp8266 hack sonoma county 4/8/2015
Esp8266 hack sonoma county 4/8/2015Esp8266 hack sonoma county 4/8/2015
Esp8266 hack sonoma county 4/8/2015
 
Arduino 習作工坊 - Lesson 1 燈光之夜
Arduino 習作工坊 - Lesson 1 燈光之夜Arduino 習作工坊 - Lesson 1 燈光之夜
Arduino 習作工坊 - Lesson 1 燈光之夜
 
NodeMCU ESP8266 workshop 1
NodeMCU ESP8266 workshop 1NodeMCU ESP8266 workshop 1
NodeMCU ESP8266 workshop 1
 
Pc 104 express w. virtex 5-2014_5
Pc 104 express w. virtex 5-2014_5Pc 104 express w. virtex 5-2014_5
Pc 104 express w. virtex 5-2014_5
 
It's game time
It's game timeIt's game time
It's game time
 
Espresso Lite v2 - ESP8266 Overview
Espresso Lite v2 - ESP8266 OverviewEspresso Lite v2 - ESP8266 Overview
Espresso Lite v2 - ESP8266 Overview
 

En vedette

En vedette (7)

Introduction to Kafka
Introduction to KafkaIntroduction to Kafka
Introduction to Kafka
 
A Day in the Life of a Metro-veloper
A Day in the Life of a Metro-veloperA Day in the Life of a Metro-veloper
A Day in the Life of a Metro-veloper
 
Apache Kafka Introduction
Apache Kafka IntroductionApache Kafka Introduction
Apache Kafka Introduction
 
Continuous Delivery Pipeline - Patterns and Anti-patterns
Continuous Delivery Pipeline - Patterns and Anti-patternsContinuous Delivery Pipeline - Patterns and Anti-patterns
Continuous Delivery Pipeline - Patterns and Anti-patterns
 
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
Apache Kafka: A high-throughput distributed messaging system @ JCConf 2014
 
Kafka At Scale in the Cloud
Kafka At Scale in the CloudKafka At Scale in the Cloud
Kafka At Scale in the Cloud
 
Introduction to Kafka and Zookeeper
Introduction to Kafka and ZookeeperIntroduction to Kafka and Zookeeper
Introduction to Kafka and Zookeeper
 

Similaire à Building a robot with the .Net Micro Framework

Practical reverse engineering and exploit development for AVR-based Embedded ...
Practical reverse engineering and exploit development for AVR-based Embedded ...Practical reverse engineering and exploit development for AVR-based Embedded ...
Practical reverse engineering and exploit development for AVR-based Embedded ...
Alexander Bolshev
 

Similaire à Building a robot with the .Net Micro Framework (20)

Practical reverse engineering and exploit development for AVR-based Embedded ...
Practical reverse engineering and exploit development for AVR-based Embedded ...Practical reverse engineering and exploit development for AVR-based Embedded ...
Practical reverse engineering and exploit development for AVR-based Embedded ...
 
Introduction to Arduino Webinar
Introduction to Arduino WebinarIntroduction to Arduino Webinar
Introduction to Arduino Webinar
 
Emulating With JavaScript
Emulating With JavaScriptEmulating With JavaScript
Emulating With JavaScript
 
serial.ppt
serial.pptserial.ppt
serial.ppt
 
serial.ppt
serial.pptserial.ppt
serial.ppt
 
A brief introduction to making your own (Internet of Things) Thing
A brief introduction to making your own (Internet of Things) ThingA brief introduction to making your own (Internet of Things) Thing
A brief introduction to making your own (Internet of Things) Thing
 
Presentation1
Presentation1Presentation1
Presentation1
 
S2C China ICCAD 2010 Presentation
S2C China ICCAD 2010 PresentationS2C China ICCAD 2010 Presentation
S2C China ICCAD 2010 Presentation
 
Sundance Profile 2014
Sundance Profile 2014Sundance Profile 2014
Sundance Profile 2014
 
Parallel Rendering of Webpages
Parallel Rendering of WebpagesParallel Rendering of Webpages
Parallel Rendering of Webpages
 
introduction to embedded systems part 2
introduction to embedded systems part 2introduction to embedded systems part 2
introduction to embedded systems part 2
 
embedded-systems-for-beginners
embedded-systems-for-beginnersembedded-systems-for-beginners
embedded-systems-for-beginners
 
Microcontroller from basic_to_advanced
Microcontroller from basic_to_advancedMicrocontroller from basic_to_advanced
Microcontroller from basic_to_advanced
 
Alessandro Abbruzzetti - Kernal64
Alessandro Abbruzzetti - Kernal64Alessandro Abbruzzetti - Kernal64
Alessandro Abbruzzetti - Kernal64
 
Computer Architecture - Hardware - Lessons 14 - SCSI - Eric Vanderburg
Computer Architecture - Hardware - Lessons 14 - SCSI - Eric VanderburgComputer Architecture - Hardware - Lessons 14 - SCSI - Eric Vanderburg
Computer Architecture - Hardware - Lessons 14 - SCSI - Eric Vanderburg
 
arduinoworkshop-160204051621.pdf
arduinoworkshop-160204051621.pdfarduinoworkshop-160204051621.pdf
arduinoworkshop-160204051621.pdf
 
Ardui no
Ardui no Ardui no
Ardui no
 
4 Introduction to Arduino.pdf
4 Introduction to Arduino.pdf4 Introduction to Arduino.pdf
4 Introduction to Arduino.pdf
 
Null mumbai-iot-workshop
Null mumbai-iot-workshopNull mumbai-iot-workshop
Null mumbai-iot-workshop
 
Processors selection
Processors selectionProcessors selection
Processors selection
 

Dernier

Dernier (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
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 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
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
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 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
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
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...
 
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
 
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
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 

Building a robot with the .Net Micro Framework

  • 1. Building a robot with .Net Micro Framework Ducas Francis SC @ Readify
  • 2. NetMF • Open Source Platform for small embedded applications • Runs on devices with a 32-bit processor and as little as 64K RAM • Provides the efficiency of creating and maintaining devices in managed code
  • 3. Why NetMF? • Use Visual Studio as the IDE • Program in C# • Same code runs on any NetMF device with minimal changes • Full debugging capabilities – Emulator – Breakpoints – Stepping – Variables – Stack Traces • Includes many bus drivers • Managed Code with Garbage Collection
  • 4. What about Arduino? • Open Source Platform for electronics prototyping • Uses the Arduino programming language (C++ based) and Arduino IDE. • Benefits – Inexpensive – Cross-Platform Software – Nice IDE – Open Source and Extensible Software (C++ or AVR-C) – Open Source and Extensible Hardware (ATMEGA8/168)
  • 5. NetMF Hardware - Netduino • Pro – Atmel ARM7 • Go – STMicro Cortex- 48MHz 128KB Flash M4 168MHz 384KB 60KB RAM Flash 100KB RAM
  • 6. NetMF Harware - GHI • FEZ Spider – EMX ARM7 72MHz • FEZ Cerberus/Cerbuino/Cerb40 – 3000KB Flash 12000KB RAM OSHW Cortex-M4 168MHz 300KB Flash 112KB RAM • Fez Hydra – OSHW ARM9 240MHz 3000KB Flash 12000KB • FEZ Panda II - USBizi-100 ARM7 RAM 72MHz 148KB Flash 62KB RAM
  • 7. Arduino Compatible vs Gadgeteer • Compatible with • Sockets over Pins Arduino shields • Modules are pre-built • Pins over Sockets • Not all boards have all • Easy to prototype with socket types breadboards and • Usually have more breakout boards powerful processors • More flexible for electronics projects
  • 8. What Are We Building • Let’s see…
  • 10. Tamiya Dual Motor Gearbox
  • 11. Tamiya Dual Motor Gearbox
  • 12. Tamiya Track and Wheel Set
  • 18. What you Need • Mainboard • FEZ Panda II $50 • Motors • SolarRobotics RM3 2x $4 • Gearboxes • Tamiya Double Gearbox (70168) $15 • Wheels • Tamiya Track and Wheel Set (70100) $15 • Housing/Plates • Tamiya Universal Plate Set (70157) $10 • Batteries • 4xAAA + 1x9V $10 • Motor Driver • 1A Dual TB6612FNG H Bridge (ROB- 09457) $10 • Distance Sensor • MaxBotix LV-EZ0 Ultrarosnic Range Finder (SEN-08502) $35 • Accelerometer • Triple Axis Accelerometer ADXL345 (SEN- …) $30 Total: ~$150
  • 19. Or You Could Just Buy a Kit… • FEZ Mini Robot Kit $120 • RP5 Tank Chasis + Driver $120
  • 20. What you need to know • *Basic* electronics • How to use a soldering iron • How to cut a little code in C#
  • 22. Net MF 101 – What do I have? • Multithreading • GC • Flash access
  • 23. NetMF 101 – What don’t I have? • Generics • A lot of RAM…
  • 25. NetMF 101 - IO • Digital IO • Interrupts • Analog IO • UART • SPI • I2C • PWM
  • 26. NetMF 101 – Digital IO • Pin can either be set to HIGH (true) or LOW (false) • OutputPort.Write(bool) • bool InputPort.Read() • Demo - LED
  • 27. NetMF 101 - Interrupts • Act when the signal changes from LOW to HIGH and vice-versa • NativeEventHandler InterruptPort.OnInterrupt • Demo - Bumper
  • 28. NETMF 101 – Analog IO • Read a voltage – not just HIGH/LOW • Not part of core NetMF • byte AnalogIn.Read() • AnalogOut.Set(int value) • AnalogOut.Set(byte[] data, int offset, int count, int dataRate) • Demo – Ultrasonic Distance Finder
  • 29. NETMF 101 – UART Serial Ports • Use 2 Pins to Communicate between 2 Devices – TXD – RXD • Wire to the opposite on each device – RXD => TXD – TXD => RXD • new SerialPort(“COM1”, …) • SerialPort.Read(byte*+, …) • SerialPort.Write(byte*+, …) • Demo - XBee
  • 30. NetMF 101 – I2C • Use 2 Pins to communicate between master and multiple slave devices. – SCL – SDA • Provides a bus and ability to define configuration and communicate using transactions • Demo - Accelerometer
  • 31. NetMF 101 - PWM • Pulse Width Modulation • Emulates a wave with given frequency and duty cycle • Motors should be given higher frequencies • PWM.Set(int freqHz, int dutyCycle) • Demo - Piezo
  • 32. Building Tank Bot.. • Build the gearbox • Attach the gearbox to the frame and wheels • Attach the main board to the frame • Attach battery holders to the frame • Solder pins to the prototyping board, distance sensor, motor driver and accelerometer • Solder wires to the motors • Attach the distance sensor to the frame • Wire the motor driver, distance sensor and accelerometer to the prototyping board • Write some code…
  • 33. Test Bots • Distance Sensor • Accelerometer • Motor Driver
  • 34. Discovery Bot while (something within 30cm of front) avoid go forward
  • 35. Safe Discovery Bot while (bot is tipping) avoid while (something within 30cm of front) avoid go forward
  • 37. Where to learn more… • tinyclr.com • netmf.com • letsmakerobots.com • sparkfun.com • bildr.com • mbed.org
  • 38. With thanks to our sponsors
  • 39. Please complete your feedback forms, and return them to the registration desk for a chance to win a Nokia Lumia