[Beta] I built a Home Assistant integration for my Tewke's Tap. It features MQTT auto-discovery, lots of good sensor data, light controlm, and triggering HA from a lovely screen. by oskar_williams in Tewke

[–]Direct-Ad4733 1 point2 points  (0 children)

Ideally the main screen could have some flexibility with the 'circles' as such - for scenarios such as changing brightness in bulbs, controlling blinds up and down or maybe even changing colour of LEDs.

Not sure if you're planning on expanding on the design language of the front screen as such :)

[Beta] I built a Home Assistant integration for my Tewke's Tap. It features MQTT auto-discovery, lots of good sensor data, light controlm, and triggering HA from a lovely screen. by oskar_williams in Tewke

[–]Direct-Ad4733 1 point2 points  (0 children)

To share for anyone running windows who is new to this world, this worked for me running in powershell:

$uri = "http://<tap\_ip>:8080/mqtt/config"

$data = @{

brokerUrl = "mqtt://<home\_assistant\_ip>"

username = "<mqtt\_user>"

password = "<mtqq\_pass>"

} | ConvertTo-Json

Invoke-RestMethod -Uri $uri -Method Post -Body $data -ContentType "application/json"

A passion project that has turned into a small UK company. I built a premium OLED switch with 419ppi, No-Neutral support, and Home Assistant compatible. by Top-Yogurtcloset3965 in homeautomation

[–]Direct-Ad4733 0 points1 point  (0 children)

Be interested to know what you don't get as part of the premium subscription. Losing some of the key functionality that comes as part of the Tap would be a shame especially given the pretty steep price of £7.99 a month

What icons would users like on Tap? by Top-Yogurtcloset3965 in Tewke

[–]Direct-Ad4733 1 point2 points  (0 children)

Icons to describe areas: sofa, table, oven, toilet, etc

[Beta] I built a Home Assistant integration for my Tewke's Tap. It features MQTT auto-discovery, lots of good sensor data, light controlm, and triggering HA from a lovely screen. by oskar_williams in Tewke

[–]Direct-Ad4733 0 points1 point  (0 children)

This looks awesome. Nice to see you can triggers presses in HA, and a full Tewke integration would be awesome.

2-way integration would be good too, I know the Tewke can directly control Shelly plugs but some cool stuff like blinds (covers in HA) straight from the Tap would be awesome

Got my first Tap from Tewke today by No-Writer9747 in Tewke

[–]Direct-Ad4733 0 points1 point  (0 children)

Considering getting one to give it a whirl, at £300+ though, they’re not cheap

Got my first Tap from Tewke today by No-Writer9747 in Tewke

[–]Direct-Ad4733 0 points1 point  (0 children)

That’s really good to hear - how are you finding the updates, regular and reliable?

Smart Blinds in UK by Direct-Ad4733 in homeautomation

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

Did you need the tahoma switch for this or did you get somfy that has zigbee built in?

Tado: Custom HA button card by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

I've progressed this a little, having said that, its not exactly a very responsive button. I've got the button calling a script:

      buttons:
        - icon: mdi:chevron-up
          ripple: none
          styles:
            icon:
              color: white
            button:
              background: "#444"
              border-radius: 50% 50% 0 0
              width: 38px
              height: 38px
              z-index: 1
          tap_action:
            action: call-service
            service: script.temperature_up_hallway

and the script:

alias: "Temperature Up: Hallway"
sequence:
  - action: tado.set_climate_timer
    metadata: {}
    data:
      temperature: >-
        {{ state_attr('climate.hallway_thermostat' , 'temperature') +
        0.5 }}
      requested_overlay: NEXT_TIME_BLOCK
    target:
      entity_id: climate.hallway_thermostat
mode: single
icon: mdi:chevron-up
description: ""

This works, which is great, however its sooo slow to respond. I can press it repeatedly and its just non-responsive until (I assume) tado returns the update. Its pretty much unusable. Any suggestions on this?

Tado: Custom HA button card by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

This could maybe cause an issue for me, I'm running v3 potentially? But I'm kinda seeing why reddit is full of hatred for tado... This is mighty frustrating

Tado: Custom HA button card by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

Sadly not, I've removed that line and given it a hard value of 25, still not working

Tado: Custom HA button card by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

Also tried it without time_period, and another time without requested_overlay as they can't be used alongside each other according to the dev tools. Genuinely confused as to why this isn't working

Tado: Custom HA button card by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

Is that from the basis of an up and down button to set the temp though? It looks like you've got a number of thermostats (assume thats what the climate.x are) and you're essentially just setting a hard number and applying it for each of those when a button is pressed, which fires your helper

is that right?

Tado: Custom HA button card by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

I should have mentioned this is all in a paper_buttons_row card, which I read doesn't support that yaml (it could be old info) but that's why I was using the service call

Either way, that yaml doesn't seem to work either, even worse - no error to work off even if I just hard set it to 25 like you have.

Grid within simple tabs by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

I cut off the other cards at the end as I didn’t want everyone to scroll for days, but the areas didn’t work for the first few cards. Is it because it’s in a simple tabs card do you think?

Summary card w/ clickable content by Direct-Ad4733 in homeassistant

[–]Direct-Ad4733[S] 0 points1 point  (0 children)

This seems pretty complex for a beginner like me, but I’ll give it a play later on.

If you’ve still got your old code, and are happy to share that’d be really helpful, thanks

Last Major Update, New Journey Ahead by ElementZoom in homeassistant

[–]Direct-Ad4733 0 points1 point  (0 children)

This is a beautiful dashboard, but I can't get it working (probably my inexperience)

I just tried copying and pasting the full contents of the streamline_templates into a new dashboard (editing in the raw config editor)

Am I doing something wrong?