plumbing the arduino
play

Plumbing the Arduino Adam Sampson University of Kent (and a cast - PowerPoint PPT Presentation

Plumbing the Arduino Adam Sampson University of Kent (and a cast of thousands, including Matt Jadud, Christian Jacobsen, Omer Kilic, Carl Ritson...) A brief history lesson In the 1980s, INMOS created the Transputer and an unusual


  1. Plumbing the Arduino Adam Sampson University of Kent (and a cast of thousands, including Matt Jadud, Christian Jacobsen, Omer Kilic, Carl Ritson...)

  2. A brief history lesson ● In the 1980s, INMOS created the Transputer ● … and an unusual programming language, called occam ● Further developed at Kent in the 1990s and 2000s: occam-pi ● Here's what it looks like...

  3. C++: doThing(); doOtherThing(); occam: SEQ doThing() doOtherThing()

  4. PROC main () WHILE TRUE SEQ digitalWrite (13, HIGH) delay (200) digitalWrite (13, LOW) delay (200) :

  5. PROC blink (VAL INT pin, period) WHILE TRUE SEQ digitalWrite (pin, HIGH) delay (period) digitalWrite (pin, LOW) delay (period) : PROC main () blink (13, 200) :

  6. PROC main () blink (13, 200) :

  7. occam: PAR x y C++: ??!?!!!?

  8. PROC main () PAR blink (13, 300) blink (14, 500) :

  9. This is a channel.

  10. sender receiver

  11. inputPin outputPin

  12. inputPin invert outputPin

  13. Concurrency in action ● We call this “process-oriented programming” ● Build your program out of little, isolated components, and connect them together ● Plumbing is a library of ready-made components (like inputPin, invert and blink) for the Arduino

  14. 64 LEDs (well, 128, actually...)

  15. One

  16. How does that work? buffer buffer buffer ... buffer

  17. How does that work? buffer buffer buffer ... buffer ... column column column column

  18. How does that work? black. source buffer buffer buffer ... buffer hole ... column column column column

  19. Distributed embedded system black. source buffer buffer buffer ... buffer hole ... column column column column

  20. First node source buffer buffer buffer ... buffer serial.tx serial.tx ... column column column column

  21. Other nodes serial.rx buffer buffer buffer ... buffer serial.tx serial.tx ... column column column column

  22. The RepRap ● X, Y and Z axes with steppers and endstops ● Print head with heater, temperature sensor and extruder motor ● Serial interface to accept commands from a host computer

  23. Plumbing the RepRap heater thermostat temp. sensor motor motor motor motor x motor. motor. motor motor motor. motor. serial.port command.parser control control motor. axis. y control control endstop endstop control control endstop endstop endstop endstop z extruder

  24. How do I learn more? ● Read the book! ● Available from our web site along with the software (all open source): http://concurrency.cc/ ● For more about occam-pi: http://occam-pi.org/ ● Thanks – any questions?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend