Ejemplo n.º 1
0
 def __init__(self, email, *args, **kw):
     super(DriveFuse, self).__init__(*args, **kw)
     self.drive_service = DriveService(email)
     self.codec = 'utf-8'
Ejemplo n.º 2
0
humidity_svc = HumidityService()
humidity_svc.measurement_period = 100
humidity_last_update = 0

light_svc = LightSensorService()
light_svc.measurement_period = 100
light_last_update = 0

temp_svc = TemperatureService()
temp_svc.measurement_period = 100
temp_last_update = 0

tone_svc = ToneService()

drive_svc = DriveService()
kit = ServoKit(channels=16)

exploration_svc = ExplorationService()

ble = BLERadio()
# The Web Bluetooth dashboard identifies known boards by their
# advertised name, not by advertising manufacturer data.
ble.name = "CLUE"

# The Bluefruit Playground app looks in the manufacturer data
# in the advertisement. That data uses the USB PID as a unique ID.
# Adafruit CLUE USB PID:
# Arduino: 0x8071,  CircuitPython: 0x8072, app supports either
adv = AdafruitServerAdvertisement()
adv.pid = 0x8072