summaryrefslogtreecommitdiff
path: root/julia-arduino-master/energy meter/readCurrent.jl
blob: 965bc295dee756a9c5c8f3badc6369167b50beb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using SerialPorts
using ArduinoTools

function readCurrent()
  str = string(Char(1))*string(Char(3))*string(Char(15))*string(Char(88))*string(Char(0))*string(Char(2))*string(Char(70))*string(Char(204))
  ser = connectBoard(9600)
  write(ser,str)
  sleep(0.1)
  s = readavailable(ser)
  close(ser)
  s = s[end-7:end]
  current = hex2num(s)
  println("The Current in A is:")
  println(current)
end

readCurrent()