1
0
mirror of https://github.com/undera/pylgbst.git synced 2020-11-18 19:37:26 -08:00
Andrey Pokhilko 32eecac1a6
Make v1.0, based on official docs (#27)
* It's HUB ID

* Rename file

* Working with official doc

* Some progress

* AttachedIO msg

* device action impl

* some better device alert impl

* restructuring

* Some port commands handled

* Some command feedback waiting

* Some more request-reply things

* Some more request-reply things

* Reworked msg classes

* Getting back to UTs

* Getting back to UTs

* Facing sync lock problems

* Facing sync lock problems

* Testing it

* Covering more with tests

* handle actions

* Hub class is almost covered

* done coverage for Hub

* done coverage for MoveHub

* Button is tested

* remove debug server from examples

* Current and voltage tested

* color sensor basic test

* cover tilt sensor

* motor sensor tested

* constant motor

* motor is tested

* hold_speed impl for motor

* motor commands recorded

* some cleanup

* some cleanup

* some cleanup

* debug

* debug

* FIX a bug

* acc/dec profiles figured out

* UT motor ops

* UT motor ops

* Get rid of weird piggyback

* fix UT

* Fix encoding?

* fix test mb

* More robust

* Checked demo works

* cosmetics

* cosmetics

* Maybe better test

* fetching and decoding some device caps

* describing devs

* describing devs works

* Applying modes we've learned

* Simple and extensible dev attach

* Reworking peripherals based on modes

* Applying modes we've learned

* implemented getting sensor data

* fixed port subscribe

* Added led out cmds on vision sensor

* Worked on color-distance sensor

* Introduce some locking for consistency

* Improved it all

* Travis flags

* improve

* improve

* improve docs
2019-05-30 17:02:50 +03:00

91 lines
2.4 KiB
Python

import logging
from pylgbst.hub import MoveHub
from pylgbst.peripherals import COLOR_YELLOW, COLOR_BLUE, COLOR_CYAN, COLOR_RED, COLOR_BLACK, COLORS
class ColorSorter(MoveHub):
positions = [COLOR_YELLOW, COLOR_BLUE, COLOR_CYAN, COLOR_RED]
def __init__(self, connection=None):
super(ColorSorter, self).__init__(connection)
self.position = len(self.positions)
self.color = 0
self.distance = 10
self._last_wheel_dir = 1
self.vision_sensor.subscribe(self.on_color)
self.queue = [None for _ in range(0, 1)]
def on_color(self, colr, dist):
if colr not in (COLOR_BLACK,) or dist < 2.5:
logging.debug("%s %s", COLORS[colr], dist)
self.color = colr
self.distance = dist
def feed(self):
self.motor_A.angled(1080) # 1080 was true
def move_to_bucket(self, color):
logging.info("Bucket: %s", COLORS[color])
if color in self.positions:
newpos = self.positions.index(color)
else:
newpos = len(self.positions)
if newpos == self.position:
return
offset = newpos - self.position
wheel_dir = offset / abs(offset)
# if wheel_dir != self._last_wheel_dir:
# self.motor_B.angled(30 * wheel_dir)
self.motor_B.angled(offset * 600, 0.8)
self.position = newpos
self._last_wheel_dir = wheel_dir
def clear(self):
self.vision_sensor.unsubscribe(self.on_color)
self.move_to_bucket(COLOR_BLACK)
self.motor_AB.stop()
def tick(self):
res = False
item = (self.color, self.distance) # read once
if item[1] <= 5.0:
logging.info("Detected: %s", COLORS[item[0]])
self.queue.append(item)
res = True
else:
self.queue.append(None)
logging.debug("%s", [COLORS[x[0]] if x else None for x in self.queue])
last = self.queue.pop(0)
if last:
self.move_to_bucket(last[0])
res = True
self.feed()
return res
if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
sorter = ColorSorter()
empty = 0
try:
while True:
empty += 1
if sorter.tick():
empty = 0
elif empty > 20:
break
finally:
sorter.clear()