store stimulus information
This commit is contained in:
7
tests.py
7
tests.py
@@ -5,12 +5,13 @@ import message_pb2
|
||||
import sqlite3
|
||||
|
||||
# Test protobuf here
|
||||
code = bytearray('CgoNAAAAABUAAAAA', "utf-8")
|
||||
code = bytearray('CgoNAABIQxUAAMhCEAA=', "utf-8")
|
||||
print(code)
|
||||
bcode = base64.b64decode(code)
|
||||
res = message_pb2.CollarResponse()
|
||||
res.ParseFromString(bcode)
|
||||
|
||||
assert res.loc.x == 0
|
||||
assert res.loc.y == 0
|
||||
assert res.loc.x == 200
|
||||
assert res.loc.y == 100
|
||||
assert res.oob == 0
|
||||
print("Coord {x: " + str(res.loc.x) + ", y: " + str(res.loc.y) + "}")
|
||||
|
||||
Reference in New Issue
Block a user