forked from pimoroni/inventorhatmini-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathread_gpios.py
More file actions
44 lines (33 loc) · 1.38 KB
/
read_gpios.py
File metadata and controls
44 lines (33 loc) · 1.38 KB
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
40
41
42
43
44
import time
from inventorhatmini import InventorHATMini, NUM_GPIOS, LED_GPIO_1
from ioexpander import IN # or IN_PU of a pull-up is wanted
"""
Shows how to initialise the 4 GPIO headers of Inventor HAT Mini as inputs and read them.
Press "User" to exit the program.
"""
# Constants
BRIGHTNESS = 0.4 # The brightness of the LEDs
GPIO_NAMES = ("GP0", "GP1", "GP2", "GP3") # Friendly names to give the GPIOs
USE_LEDS = True # Whether to use the LEDs to show GPIO state (requires code to run with sudo)
# Create a new InventorHATMini
board = InventorHATMini(init_leds=USE_LEDS)
# Setup each GPIO as an input
for i in range(NUM_GPIOS):
board.gpio_pin_mode(i, IN) # or IN_PU of a pull-up is wanted
# Read the GPIOs until the user button is pressed
while not board.switch_pressed():
# Read each GPIO in turn and print its value
for i in range(NUM_GPIOS):
value = board.gpio_pin_value(i)
print(GPIO_NAMES[i], " = ", value, sep="", end=", ")
# Set the neighbouring LED to a colour based on
# the input, with Green for high and Blue for low
if value:
board.leds.set_hsv(i + LED_GPIO_1, 0.333, 1.0, BRIGHTNESS)
else:
board.leds.set_hsv(i + LED_GPIO_1, 0.666, 1.0, BRIGHTNESS)
# Print a new line
print()
time.sleep(0.1)
# Turn off the LED bars
board.leds.clear()