We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15580df commit 9240585Copy full SHA for 9240585
examples/message_reader.py
@@ -12,7 +12,9 @@
12
try:
13
print(f'VER: {alvik.version}')
14
print(f'LSP: {alvik.left_wheel.get_speed()}')
15
- print(f'RSP: {alvik.left_wheel.get_speed()}')
+ print(f'RSP: {alvik.right_wheel.get_speed()}')
16
+ print(f'LPOS: {alvik.left_wheel.get_position()}')
17
+ print(f'RPOS: {alvik.right_wheel.get_position()}')
18
print(f'TOUCH: {alvik.touch_bits}')
19
print(f'RGB: {alvik.red} {alvik.green} {alvik.blue}')
20
print(f'LINE: {alvik.left_line} {alvik.center_line} {alvik.right_line}')
0 commit comments