# Copyright 2024 Allen Synthesis
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from europi import oled, b1, din
from europi_script import EuroPiScript
class HelloWorld(EuroPiScript):
state = self.load_state_json()
self.counter = state.get("counter", 0)
self.enabled = state.get("enabled", True)
din.handler(self.increment_counter)
b1.handler(self.toggle_enablement)
def increment_counter(self):
def toggle_enablement(self):
self.enabled = not self.enabled
"""Save the current state variables as JSON."""
# Don't save if it has been less than 5 seconds since last save.
if self.last_saved() < 5000:
self.save_state_json(state)
oled.centre_text(f"Hello world\n{self.counter}")
if __name__ == "__main__":