summaryrefslogtreecommitdiff
path: root/tools/julia/test_firmware.jl
blob: 1af3d76f6b7845598b93ced21773d32290931dee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using SerialPorts
include("ArduinoTools.jl")

h = ArduinoTools.connectBoard(115200)

for i = 1:3
  write(h,"v")
  s = read(h, 2)
  println(s)
end

close(h)