PedalPi - Application - Component

Creating a component

Subsequently will be added details on how to create a component for the Pedal Pi. For now, you can check the blog post Building a Pedal Pi Component - Pedalboard selector

Component

class application.component.component.Component(application)[source]
close()[source]

Method called when the application is requested to quit. Classes components must implement to safely finish their activities.

init()[source]

Initialize this component

register_observer(observer)[source]

Calls Application.register_observer().

Parameters:observer (ApplicationObserver) – The observer who will receive the changes notifications
unregister_observer(observer)[source]

Calls Application.unregister_observer().

Parameters:observer (ApplicationObserver) – The observer who will not receive further changes notification

ApplicationObserver

CurrentPedalboardObserver