Skip to content

Commit

Permalink
Change order of the configuration settings. Update the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rjison committed Dec 24, 2024
1 parent 57554c8 commit 04d1697
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
16 changes: 8 additions & 8 deletions apps/coffee/coffee.star
Original file line number Diff line number Diff line change
Expand Up @@ -234,14 +234,6 @@ def get_schema():
return schema.Schema(
version = "1",
fields = [
schema.Dropdown(
id = "display_type",
icon = "tv",
name = "What to display",
desc = "What do you want this to display?",
options = display_type,
default = display_type[1].value,
),
schema.Dropdown(
id = "scroll",
name = "Scroll",
Expand All @@ -250,6 +242,14 @@ def get_schema():
options = scroll_speed_options,
default = scroll_speed_options[0].value,
),
schema.Dropdown(
id = "display_type",
icon = "tv",
name = "What to display",
desc = "What do you want this to display?",
options = display_type,
default = display_type[1].value,
),
schema.Generated(
id = "coffee_types",
source = "display_type",
Expand Down
4 changes: 4 additions & 0 deletions apps/coffee/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Created by: Robert Ison
Displays either a random coffee image, or a random coffee order, with a detailed explanation of what is in it.
When you choose to display a random coffee order, you can check which recipes can be selected. If you want to only every display "Cappuccino" for example, only pick that from the list.

Disply suggestion, schedule this app to display each day when you typically decide what coffee to make. Use the selections to filter only coffee preparations you like, then let this app decide what you'll drink each day.

If you are displaying this in a cafe, display all day but only display the orders you can manage.

Goditi il tuo caffè!

![Coffee for Tidbyt](coffee.webp)

0 comments on commit 04d1697

Please sign in to comment.