1
0
mirror of https://github.com/undera/pylgbst.git synced 2020-11-18 19:37:26 -08:00

Enable full demo

This commit is contained in:
Andrey Pohilko 2017-09-13 13:38:07 +03:00
parent afe5c3a55a
commit 5317dedccd
2 changed files with 6 additions and 4 deletions

View File

@ -10,9 +10,9 @@ log = logging.getLogger("demo")
def demo_all(conn):
movehub = MoveHub(conn)
# demo_led_colors(movehub)
# demo_motors_timed(movehub)
# demo_motors_angled(movehub)
demo_led_colors(movehub)
demo_motors_timed(movehub)
demo_motors_angled(movehub)
demo_port_c_motor(movehub)
@ -49,6 +49,7 @@ def demo_motors_angled(movehub):
movehub.motor_AB.angled(360, 1, -1)
sleep(1)
movehub.motor_AB.angled(360, -1, 1)
sleep(1)
def demo_port_c_motor(movehub):
@ -56,6 +57,7 @@ def demo_port_c_motor(movehub):
portd.angled(90, 1)
sleep(1)
portd.angled(90, -1)
sleep(1)
if __name__ == '__main__':

View File

@ -85,7 +85,7 @@ class EncodedMotor(Peripheral):
command += self.TRAILER
self.parent.connection.write(MOVE_HUB_HARDWARE_HANDLE, chr(len(command)) + self.PACKET_VER + command)
self.parent.connection.write(MOVE_HUB_HARDWARE_HANDLE, chr(len(command) + 1) + self.PACKET_VER + command)
def timed(self, seconds, speed_primary=1, speed_secondary=None, async=False):
if speed_secondary is None: