From 79e77e42dd21cc5dc606eed3bf78de116f019230 Mon Sep 17 00:00:00 2001 From: Anodynous Date: Mon, 22 Mar 2021 22:28:27 +0200 Subject: [PATCH] Add three new faces to indicate processing status. Idea taken from https://github.com/evilsocket/pwnagotchi/pull/969 --- CHANGELOG.md | 3 +++ stenogotchi/defaults.toml | 3 +++ stenogotchi/ui/faces.py | 3 +++ 3 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 461f298..4db631f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added - Add DS3231 real time clock module wiring and positioning reference picture to README. +- Add three new faces to indicate processing status. ### Changed +- Change led plugin and default patterns to better indicate noteworthy events. + ### Fixed ### Removed diff --git a/stenogotchi/defaults.toml b/stenogotchi/defaults.toml index 4360f2b..932f151 100644 --- a/stenogotchi/defaults.toml +++ b/stenogotchi/defaults.toml @@ -54,6 +54,9 @@ ui.faces.angry = "(-_-')" ui.faces.friend = "(♥‿‿♥)" ui.faces.broken = "(☓‿‿☓)" ui.faces.debug = "(#__#)" +ui.faces.process_1 = '(1__0)' +ui.faces.process_2 = '(1__1)' +ui.faces.process_3 = '(0__1)' ui.web.enabled = false ui.web.address = "192.168.1.111" diff --git a/stenogotchi/ui/faces.py b/stenogotchi/ui/faces.py index 27a3266..09e2722 100644 --- a/stenogotchi/ui/faces.py +++ b/stenogotchi/ui/faces.py @@ -20,6 +20,9 @@ FRIEND = '(♥‿‿♥)' BROKEN = '(☓‿‿☓)' DEBUG = '(#__#)' +PROCESS_1 = '(1__0)' +PROCESS_2 = '(1__1)' +PROCESS_3 = '(0__1)' def load_from_config(config):