Skip to content

Commit

Permalink
Add three new faces to indicate processing status.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anodynous committed Mar 22, 2021
1 parent 7994a3c commit 79e77e4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions stenogotchi/defaults.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions stenogotchi/ui/faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
FRIEND = '(♥‿‿♥)'
BROKEN = '(☓‿‿☓)'
DEBUG = '(#__#)'
PROCESS_1 = '(1__0)'
PROCESS_2 = '(1__1)'
PROCESS_3 = '(0__1)'


def load_from_config(config):
Expand Down

0 comments on commit 79e77e4

Please # to comment.