-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
39 lines (37 loc) · 847 Bytes
/
__init__.py
File metadata and controls
39 lines (37 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""Python binding of the click part of the LetMeCreate library.
It defines binding for the following click boards:
- 7Seg
- 8x8R (LED matrix)
- Accel
- ADC
- Air quality
- Alcohol
- Bargraph
- CO
- Color
- Color2
- DC motor
- Eve
- Fan
- GYRO
- IR distance
- IR eclipse
- Joystick
- Light
- LIN Hall
- Lora
- Motion
- Oled
- Proximity
- Relay (partial support: only relay 1 working)
- Relay2
- Relay4
- RTC
- Thermo3
- UNI Hall
"""
__all__ = ['seven_seg', 'led_matrix', 'accel', 'adc', 'air_quality', 'alcohol',
'bargraph', 'co', 'color', 'color2', 'dc_motor', 'eve', 'fan',
'gyro', 'ir_distance', 'ir_eclipse', 'joystick', 'light',
'lin_hall', 'lora', 'motion', 'oled', 'proximity', 'relay',
'relay2', 'relay4', 'rtc', 'thermo3', 'uni_hall']