kopia lustrzana https://github.com/russhughes/st7789py_mpy
27 wiersze
751 B
Python
27 wiersze
751 B
Python
"""
|
|
Generic ESP32 with Two buttons
|
|
"""
|
|
|
|
from machine import Pin
|
|
|
|
class Buttons():
|
|
"""
|
|
Buttons class for examples, modify for your device.
|
|
|
|
Attributes:
|
|
name (str): The name of the device.
|
|
left (Pin): The Pin object representing the left button.
|
|
right (Pin): The Pin object representing the right button.
|
|
fire (Pin): The Pin object representing the fire button.
|
|
thrust (Pin): The Pin object representing the thrust button.
|
|
hyper (Pin): The Pin object representing the hyper button.
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.name = "esp32"
|
|
self.left = Pin(0, Pin.IN)
|
|
self.right = Pin(35, Pin.IN)
|
|
self.fire = None
|
|
self.thrust = None
|
|
self.hyper = None
|