AWTRIX 3 - Blueprint for creating simple apps for dummies

rename device without dash and restart HASS

I will fix a crazy naming devices :slight_smile:

Nope. Didnt solve it.

AWTRIX Temp extern: Repeat at step 4: If at step 2: Error executing script. Service not found for call_service at pos 1: Service awtrix.leduhr_push_app_data not found
AWTRIX Temp extern: Repeat at step 4: Error executing script. Service not found for if at pos 2: Service awtrix.leduhr_push_app_data not found
AWTRIX Temp extern: Error executing script. Service not found for repeat at pos 4: Service awtrix.leduhr_push_app_data not found

can you switch to http://homeassistant.local:8123/developer-tools/service
and key here:
awtrix

and double check here:
http://homeassistant.local:8123/config/integrations/dashboard

Hm i don‘t have a service called awtrix, nor do I have an integration.
But it’s working with other integrations like the BTC tracker. :confused:
Its all running with mqtt.

good like with mqtt, Sir.
in the header of this topic
based on Awtrix (clock) notification [Custom Component]
based on Awtrix (clock) notification [Custom Component]
based on Awtrix (clock) notification [Custom Component]
based on Awtrix (clock) notification [Custom Component]
based on Awtrix (clock) notification [Custom Component]

These are AWESOME Instructions!!! I get back home this weekend and I can’t wait to try it out!! From my memory (I’ll go back and look though), I didn’t see a download zip folder on GitHub. It is on the page that you sent me above? Thanks so much!! I will keep you updated!

Oh my gosh, yassssssssss! :raised_hands: :raised_hands:

1 Like

This so cool! So my new question is, is there a way to assign a unique icon for each day of the week that updates as the day changes? Kind of like how, in a weather clock, there is an individual icon displayed for each weather state (sunny, rainy) etc.? I have downloaded icons to represent each day in my week, individually, that I would like to use.
OR, ha, this feels harder to do :sweat_smile: :nerd_face: is there a way to use that updating icon of the stock Awtrix Time App that has the icon of a calendar and also the day of the month that updates (in black text by default? Time App calls them (CHCOL CBCOL and CTCOL) . I don’t yet know where the for the program for that automatically updating calendar icon is stored. Is it a a .py script somewhere? But it’s pretty cool!

1 Like

Let’s go to discord awtix topic.

1 Like

Omg i’m sorry!!!
Will try it later. Thank you!!!

1 Like

I figured out how to do the Day of Week display with the right icons using Blueprints. I will install your stuff this weekend though and give it a try!

1 Like

Feel free to ping me here Discord

Hi.
Lots of first times for me: flashing a TC001, adding an external repo, creating an automation.
Everything works thanks to your blueprints.

I’d like to use this to display the power usage of my home (taken from the power meter of the solar inverter). Using the entity directly works, it displays values such as “-530.02W” (when sending power to the grid) or “2304.34W” (when getting power from the grid).

Could it be possible to add some coloring to the display?
Green when sending power and red when getting it?

1 Like

yep.
Here is an example colour the current temp.

alias: NEW_HOME_TEMPERATURE
description: ""
use_blueprint:
  path: 10der/awtrix-simple.yaml
  input:
    app_name: awtrix_app_home
    entity: sensor.home_temperature
    suffix_text: °
    awtrix_device:
      - c9678a92ae6e69605a8b90539f9e64d3
    app_icon: "96"
    value_template:
      icon: "{{app_icon}}"
      text: "{{states(entity_id)|round}}"
    user_options:
      duration: 5
      color: |-
        {{user_data.colors[(colors.items() | 
            map(attribute='0') |  
            map('int') |  
            sort | select('>=', value_template.text ) | 
            first) | string]}}
    additional_options:
      colors:
        "0": "#00ff7f"
        "5": "#00ff2a"
        "10": "#2aff00"
        "15": "#7fff00"
        "20": "#d4ff00"
        "25": "#ffd400"
        "30": "#ff7f00"
        "-15": "#007fff"
        "-10": "#00d4ff"
        "-5": "#00ffd4"
    prefix_text: "{{ '+' if value_template.text > 0 }}"

in “AWTRIX application options section”

color: "{{ 'red' if value_template.text > 0 else 'green' }}"

I had to use hex values for colors but it works!

color: "{{ '#FF0000' if value_template.text > 0 else '#00FF00' }}"
1 Like

Hi,

thank you for your wonderful work.

It works for me. But i am able to show only one entity. I would like to show upto 5 entites one after another. Right now it displays only one of the entity.
Can you tell me how to achieve this ?

Thank you.

Thanks @10der , really like the component and blueprint. Your explanation here helped me to use it.

Just made a very similar prompt as @Klug
Showing my grid-exchange with other color and icon for positive and negative values:

alias: Awtrix_E320_momentan
description: ""
use_blueprint:
  path: 10der/awtrix-simple.yaml
  input:
    app_name: awtrix_e320_now
    entity: sensor.l_g_e320_momentan
    awtrix_device:
      - 351487bc51fa3bff3b3dffc07bec38ea
      - 7df02022f0c025dc6e4e9ff7a260a78a
    suffix_text: W
    value_template:
      text: "{{ states(entity_id) | int(0) | abs }}"
      text2: "{{ states(entity_id) | int(0) }}"
    user_options:
      duration: 5
      color: "{{ '#FF0000' if value_template.text2 > 0 else '#00FF00' }}"
      icon: "{{ '52715' if value_template.text2 > 0 else '52648' }}"

Now i can see the direction of the power flow at icon/color, so i want to use absolute values.
I worked around with the non-absolute value at the “text2”-field. Im sure there is a better way, but it works :wink:

1 Like

I am not David Copperfield… but my crystal ball tells me that this field you leave as is instead of create a new name :slight_smile: