Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved gpio handling for buttons and status LEDs #230

Merged
merged 1 commit into from
Jan 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 33 additions & 16 deletions gatewayconfig/gatewayconfig_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ def __init__(self, sentry_dsn, balena_app_name, balena_device_uuid, variant, eth
variant=variant)
self.shared_state = GatewayconfigSharedState()
self.init_nmcli()
self.user_button = None
self.status_led = None
self.init_gpio(variant)

eth0_mac_address = read_eth0_mac_address(eth0_mac_address_filepath)
Expand All @@ -50,7 +52,9 @@ def __init__(self, sentry_dsn, balena_app_name, balena_device_uuid, variant, eth
firmware_version, ethernet_is_online_filepath,
self.shared_state
)
self.led_processor = LEDProcessor(self.status_led, self.shared_state)

if self.status_led is not None:
self.led_processor = LEDProcessor(self.status_led, self.shared_state)
self.diagnostics_processor = DiagnosticsProcessor(
diagnostics_json_url,
self.shared_state
Expand All @@ -76,8 +80,10 @@ def start(self):

def stop(self):
LOGGER.debug("Stopping ConfigApp")
self.user_button.close()
self.status_led.close()
if self.user_button is not None:
self.user_button.close()
if self.status_led is not None:
self.status_led.close()
# Quits the cputemp application
self.bluetooth_services_processor.quit()

Expand Down Expand Up @@ -125,28 +131,39 @@ def init_gpio(self, variant):
on the detected hardware.
"""
if is_raspberry_pi():
self.user_button = Button(self.get_button_gpio(), hold_time=USER_BUTTON_HOLD_SECONDS)
self.status_led = LED(self.get_status_led_gpio())
btn = self.get_button_gpio()
if btn is not None:
self.user_button = Button(btn, hold_time=USER_BUTTON_HOLD_SECONDS)
led = self.get_status_led_gpio()
if led is not None:
self.status_led = LED(led)
elif is_rockpi():
self.user_button = MraaButton(self.get_button_pin(), hold_seconds=USER_BUTTON_HOLD_SECONDS)
self.user_button.start()
self.status_led = MraaLED(self.get_status_led_pin())
btn = self.get_button_pin()
if btn is not None:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if btn:
would have been the same.

self.user_button = MraaButton(btn, hold_seconds=USER_BUTTON_HOLD_SECONDS)
self.user_button.start()
led = self.get_status_led_pin()
if led is not None:
self.status_led = MraaLED(led)
else:
LOGGER.warn("LEDs and buttons are disabled. "
"GPIO not yet supported on this device: %s"
% variant)

self.user_button.when_held = self.button_held
if self.user_button is not None:
self.user_button.when_held = self.button_held

# Use daemon threads so that everything exists cleanly when the program stops
def start_threads(self):
self.bluetooth_services_thread = threading.Thread(target=self.bluetooth_services_processor.run)
self.led_thread = threading.Thread(target=self.led_processor.run)
if self.status_led is not None:
self.led_thread = threading.Thread(target=self.led_processor.run)
self.diagnostics_thread = threading.Thread(target=self.diagnostics_processor.run)
self.bluetooth_advertisement_thread = threading.Thread(target=self.bluetooth_advertisement_processor.run)

self.led_thread.daemon = True
self.led_thread.start()
if self.status_led is not None:
self.led_thread.daemon = True
self.led_thread.start()

# self.bluetooth_services_thread.daemon = True
self.bluetooth_services_thread.start()
Expand All @@ -163,13 +180,13 @@ def start_bluetooth_advertisement(self):
self.shared_state.run_fast_diagnostic_condition_event.set()

def get_button_gpio(self):
return self.variant_details['BUTTON']
return self.variant_details.get('BUTTON')

def get_status_led_gpio(self):
return self.variant_details['STATUS']
return self.variant_details.get('STATUS')

def get_button_pin(self):
return self.variant_details['GPIO_PIN_BUTTON']
return self.variant_details.get('GPIO_PIN_BUTTON')

def get_status_led_pin(self):
return self.variant_details['GPIO_PIN_LED']
return self.variant_details.get('GPIO_PIN_LED')