We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 346dbc3 commit e49ad66Copy full SHA for e49ad66
pslab/sciencelab.py
@@ -43,6 +43,9 @@ def __init__(self):
43
self.i2c = I2CMaster(device=self)
44
self.nrf = NRF24L01(device=self)
45
46
+ if "V6" in self.version: # Set the built-in WS2812B to green :)
47
+ self.rgb_led([0, 20, 0])
48
+
49
@property
50
def temperature(self):
51
"""float: Temperature of the MCU in degrees Celsius."""
setup.py
@@ -6,7 +6,7 @@
6
7
setuptools.setup(
8
name="pslab",
9
- version="2.0.0.rc1",
+ version="2.0.0.rc2",
10
description="Pocket Science Lab by FOSSASIA",
11
long_description=long_description,
12
long_description_content_type="text/markdown",
0 commit comments