Arduino Programming in Python
Arduino Programming in Python
Programming
in Python
Sergio Paniego Blanco
Artificial Intelligence MSc - UPM
Who am I?
Informatic Engineering and Software
Enginnering - URJC
2
Summary
Google Summer of Code
Problematic
PyOnArduino
Demo
3
Google Global program
Timeline
Summer of § February - Organizations announced
Bring students into open source § March - Student applications
Code development § April – Student Projects announced
4
Problematic Arduino programming language complexity
5
State of the
art
Current solution for the Possible approaches
problematic § Pyxie
Continuous communication between § Cython
the robot and the PC. § LLVM
6
7
PyOnArduino
JdeRobot Robot Programming tool
People:
José María Cañas
Gorka Guardiola Translate Python-like code to Arduino code
Luis Roberto Morales
Sergio Paniego Blanco
Translate, compile and upload the code directly
8
9
Supported MBOT COMPLUBOT
robots
10
PyOnArduino’s
structure
11
12
Translator Abstract Syntax Tree
Python library
13
Abstract Syntax Tree
Greatest Common Divisor
while b ≠ 0
if a > b
a := a − b
else
b := b − a
return a
14
Translator Abstract Syntax Tree
Python library
15
NodeVisitor & NodeTransformer
import ast
class MyVisitor(ast.NodeVisitor):
def visit_Str(self, node):
print('String Node: "' + node.s + '"')
class MyTransformer(ast.NodeTransformer):
def visit_Str(self, node):
return ast.Str('str: ' + node.s)
16
HALduino
Hadware Abstraction Layer
halduino.py
17
Python
Arduino
MeDCMotor leftMotor(9);
MeDCMotor rightMotor(10);
void setSpeedEngines(int speedLeft, int speedRight) {
leftMotor.run(speedLeft);
rightMotor.run(speedRight);
}
18
Complubot
19
mBot
20
Feature Limitations/Comments
pass SUPPORTED
Sleep() SUPPORTED
if If/elif/else
print SUPPORTED
21
import HALduino.halduino as halduino
Stop and go
code example def set_engine(direction: int):
if direction == 0:
Mbot
halduino.setSpeedEngines(0, 0)
print('STOP!')
elif direction == 1:
halduino.setSpeedEngines(100, 100)
print('Forward')
def loop():
if halduino.getUS() < 10:
set_engine(0)
else:
set_engine(1)
22
Stop and go
import HALduino.halduino as halduino
def loop():
if halduino.getUS() < 30:
set_engine(0)
else:
set_engine(1)
23
Managing
Versatility
robot’s
architecture Configure robot’s ports
leftMotor = 9
rightMotor = 10
ultrasonicSensor = 3
rgbled = 7
lightSensor = 6
ledMtx = 3
lineFollower = 2
24
Executing
PyOnArduino Python 3.x
Arduino IDE
Arduino Makefile
25
Make &
Arduino Build automation
# mBot Makefile
26
Problems
during Dynamic typing in Python vs Arduino
Lost parentheses
27
DEMO TIME!
Lets see how PyOnArduino tool works!
28
29
Thanks!
Any questions?
You can find me at
@sergiopaniego
30