summaryrefslogtreecommitdiff
path: root/julia-arduino-master/examples/LED/led-blue.jl
blob: 700f2198d1a06c99fc93b3c3ce2fc08e5ff63e9b (plain)
1
2
3
4
5
6
7
using SerialPorts
using ArduinoTools

ser = connectBoard(115200)
pinMode(ser,9,"OUTPUT")
digiWrite(ser,9,1)
close(ser)