Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


View this topic in a long page with up to 500 replies per page Create new topic
1 | 2 | 3 | 4 | 5
timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2902650 15-Apr-2022 13:47
Send private message

Interesting, I thought it would be something like that. This action doesn't seem to be working when I test it... can you spot what's up? I've tried capital and lower case. How do you discover the possible values for each property? Some I can find in the UI, but not many.

 

"Airtouch Master Control" is the device "climate.daikin".

 

 

 




Psilan
856 posts

Ultimate Geek


  #2902654 15-Apr-2022 14:03
Send private message

Use entities, not devices.




Voyager referral - https://refer.voyager.nz/68QKJ8XKK


timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2902658 15-Apr-2022 14:12
Send private message

Ok I understand, but this one still doesn't seem to work whether I use Damper / damper and whether I address the master entity or the climate entity for each room. Any more tips?! Appreciate your help :)

 

When I change them mode on the main tablet my phone changes within a second, and vice versa. I'm watching the phone while hitting the "test action" button and nothing is happening.

 

 

 




Psilan
856 posts

Ultimate Geek


  #2902661 15-Apr-2022 14:27
Send private message

Try a different service then. Like turn fan on tick preset mode and change mode.
Or use dev/logs to see what state damper and itc are called.




Voyager referral - https://refer.voyager.nz/68QKJ8XKK


timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2902727 15-Apr-2022 16:13
Send private message

Ok, got it. Here's the automation to set it to Damper mode and 100%. Like you said, you use fan.turn on and alter the preset mode there, and you need a short delay between some commands.

 

 

 

- id: '1'
  alias: Test Airtouch Preset Mode
  description: 'Set Airtouch to Damper mode 100%'
  trigger:
  - platform: time
    at: 00:00:00
  condition: []
  action:
  - service: fan.turn_on
    data:
      preset_mode: Damper
    target:
      entity_id:
      - fan.guest
      - fan.living
  - delay:
      hours: 0
      minutes: 0
      seconds: 2
      milliseconds: 0
  - service: fan.turn_on
    data:
      percentage: 100
    target:
      entity_id:
      - fan.living
      - fan.guest
  mode: single


timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2903486 18-Apr-2022 14:12
Send private message

@Psilan would you mind sharing the yaml for your dashboard that includes the temperature graphs? I would like to turn the Airtouch temps into "statistics" that I can display on a graph on a dashboard.

 

Once I get this all working I will probably put the yaml for where I end up on github so others can use it easily. Takes a while to learn this stuff, it might help people out.

 

I've automated most of the heating / cooling for the house, other than the Air Con which the Broadlink uses. The Broadlink automation looks like you have to record IR pulses to send out, which is a bit of a PITA. I might do it one day.


Psilan
856 posts

Ultimate Geek


  #2903489 18-Apr-2022 14:33
Send private message

They are aqara sensors.

type: horizontal-stack
cards:
- type: horizontal-stack
cards:
- type: custom:mini-graph-card
entities:
- sensor.lumi_lumi_weather_c681e007_temperature
name: Hallway
line_color: '#e74c3c'
line_width: 8
font_size: 80
- type: custom:mini-graph-card
entities:
- sensor.lumi_lumi_weather_c681e007_humidity
show:
name: false
line_color: blue
line_width: 8
font_size: 80
- type: custom:mini-graph-card
entities:
- sensor.lumi_lumi_weather_c681e007_pressure
show:
name: false
line_color: var(--accent-color)
line_width: 8
font_size: 80
- type: horizontal-stack
cards:
- type: horizontal-stack
cards:
- type: custom:mini-graph-card
entities:
- sensor.lumi_lumi_weather_fc82df07_temperature
name: Laundry
line_color: '#e74c3c'
line_width: 8
font_size: 80
- type: custom:mini-graph-card
entities:
- sensor.lumi_lumi_weather_fc82df07_humidity
show:
name: false
line_color: blue
line_width: 8
font_size: 80
- type: custom:mini-graph-card
entities:
- sensor.lumi_lumi_weather_fc82df07_pressure
show:
name: false
line_color: var(--accent-color)
line_width: 8
font_size: 80




Voyager referral - https://refer.voyager.nz/68QKJ8XKK


 
 
 

Move to New Zealand's best fibre broadband service (affiliate link). Free setup code: R587125ERQ6VE. Note that to use Quic Broadband you must be comfortable with configuring your own router.
timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2903491 18-Apr-2022 14:52
Send private message

Ah, I assumed you had graphed the temperature coming off the Airtouch temperature sensors. I'll see if I can work that out at some point :)

 

I'm just trying to integrate OpenWeatherMap outside temperature into conditions so the heating is turned off if the outside temperature is above a threshold haven't quite cracked it yet.


Dono
26 posts

Geek


  #2903781 19-Apr-2022 12:27
Send private message

timmmay:

 

Ah, I assumed you had graphed the temperature coming off the Airtouch temperature sensors. I'll see if I can work that out at some point :)

 

I'm just trying to integrate OpenWeatherMap outside temperature into conditions so the heating is turned off if the outside temperature is above a threshold haven't quite cracked it yet.

 

 

I have that as a condition on one of my automations:

 

condition: and
conditions:
  - condition: numeric_state
    entity_id: sensor.openweathermap_temperature
    below: '17'

 

 

 

 

 

Also have a dashboard graph for the temperature history
views:
  - theme: Backend-selected
    title: Home
    type: panel
    badges: []
    cards:
      - type: history-graph
        entities:
          - entity: climate.ac_0
          - entity: climate.living
          - entity: climate.guest
          - entity: climate.media
          - entity: climate.master
          - entity: sensor.openweathermap_temperature
        hours_to_show: 48
        title: Home Temp
        refresh_interval: 15

 

Which looks a little something like this:

 


timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2903802 19-Apr-2022 13:19
Send private message

That's awesome @Dono, thanks! I have both of them working based on the yaml. I thought I had to define statistics using configuration.yaml, I'm glad I didn't go down that rabbit hole!

 

The graph is quite busy. If I wanted to show say "Lounge Current Temperature" but hide target temperature and heating status, do you know how I'd do that? It's probably a probably changing the entity to something like "entity: climate.living.temperature" but I'm not so good at the HA model yet.

 

Another question about dashboard. How do I:

 

  • Make one graph take up a whole dashboard?
  • Tile the dashboard so I can have a smaller graph for each room?

Dono
26 posts

Geek


  #2903823 19-Apr-2022 14:01
Send private message

timmmay:

 

That's awesome @Dono, thanks! I have both of them working based on the yaml. I thought I had to define statistics using configuration.yaml, I'm glad I didn't go down that rabbit hole!

 

The graph is quite busy. If I wanted to show say "Lounge Current Temperature" but hide target temperature and heating status, do you know how I'd do that? It's probably a probably changing the entity to something like "entity: climate.living.temperature" but I'm not so good at the HA model yet.

 

Another question about dashboard. How do I:

 

  • Make one graph take up a whole dashboard?
  • Tile the dashboard so I can have a smaller graph for each room?

 

 

 

I've not found a way to permanently remove the target temperature, but i've not investigated in depth to be fair. You can click on each of the items in the key to remove it temporarily

 

 

 

use type: panel for a single graph to take up the whole panel

 

 

 

To have a tiled dashboard either use the default view, or type: sidebar for a single column

 

 

theme: Backend-selected
    title: Per Room 24h
    path: per-room-24h
    type: sidebar
    badges: []
    cards:
      - type: history-graph
        entities:
          - entity: climate.guest
        title: Guest
        hours_to_show: 24
        refresh_interval: 15
      - type: history-graph
        entities:
          - entity: climate.media
        title: Media
        hours_to_show: 24
        refresh_interval: 15
      - type: history-graph
        entities:
          - entity: climate.master
        title: Master
        hours_to_show: 24
        refresh_interval: 15
      - type: history-graph
        entities:
          - entity: climate.living
        title: Living
        hours_to_show: 24
        refresh_interval: 15
      - type: history-graph
        entities:
          - entity: climate.ac_0
        title: Airtouch
        hours_to_show: 24
        refresh_interval: 15

 

 


timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2904125 19-Apr-2022 21:20
Send private message

Thanks Dono, that's great! It worked for me after changing just a couple of entity names. I'll see if I can work out how to do graphs where I can explicitly tell it what to graph, rather than letting it decide. I might have to post on the HA forum, but I'll do a bit of reading / searching first.


Paul1977
5047 posts

Uber Geek


  #2904350 20-Apr-2022 13:39
Send private message

I installed this integration a several months ago via HACS and have some probably stupid questions:

 

Does it automatically find updates and notify you to auto-install them like it does with officially approved HA integrations? How do you manually check what version of the integration you're running?


Psilan
856 posts

Ultimate Geek


  #2904354 20-Apr-2022 13:47
Send private message

HACs notifies in the same place HA does in the current version. They simplified it slightly this year.

 

There haven't been updates in a long time https://github.com/mihailescu2m/hass-airtouch4-platform/releases





Voyager referral - https://refer.voyager.nz/68QKJ8XKK


timmmay

20580 posts

Uber Geek

Trusted
Lifetime subscriber

  #2904447 20-Apr-2022 16:15
Send private message

Paul1977:

 

I installed this integration a several months ago via HACS and have some probably stupid questions:

 

Does it automatically find updates and notify you to auto-install them like it does with officially approved HA integrations? How do you manually check what version of the integration you're running?

 

 

I think many of us are using this integration which is third party / has to be added manually. It works better than the built in one. Updating is manual for manually installed plugins. I think I just have to "git pull" to update.


1 | 2 | 3 | 4 | 5
View this topic in a long page with up to 500 replies per page Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.