Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Water pressure not shown in ATAG intergration #44

Open
papabak opened this issue Aug 27, 2024 · 4 comments
Open

Water pressure not shown in ATAG intergration #44

papabak opened this issue Aug 27, 2024 · 4 comments

Comments

@papabak
Copy link

papabak commented Aug 27, 2024

My ATAG One is been connected to a Weheat Blackbird heatpump last February. Since this connection the ATAG integration in Home Assistant still works fine with the exception of the water pressure being 0 instead of a real value.
What can be the cause of this? The water pressure still shows on the ATAG instrument itself.

I reinstalled the integration but that was not the solution.

Before the heatpump was installed the water pressure was correctly reported by the integration.

Core: 2024.8.3
Supervisor: 2024.08.0
Operating System: 13.1
Frontend: 20240809.0

@herikw
Copy link
Owner

herikw commented Aug 28, 2024

Hi papabak, Are you using the atag_one_ch_water_pressure sensor?
Please check the last update time to see if it is updating correctly. Also have a look at the logs to see it any error is displayed there.

image

@papabak
Copy link
Author

papabak commented Aug 28, 2024 via email

@papabak
Copy link
Author

papabak commented Oct 14, 2024

Hi HerikW, do you have a suggestion how to get the ATAG CH water pressure to be reported in HA again?

@herikw
Copy link
Owner

herikw commented Oct 15, 2024

Hi papabak,

It's difficult to troubleshoot for me because I do not have a similar configuration with a heatpump.
What you can try is to run the following powershell script on any windows device in your network. Replace the IP address with the IP address of your ATAG One thermostat. This way we can determine if your ATAG is returning the correct value when using a API call. Look for the value of ch_water_pres in the output

Open a powershell command line and run the following:

$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Content-Type", "application/json")

$body = @"
{
"retrieve_message": {
"seqnr": 0,
"account_auth": {
"user_account": "",
"mac_address": "11111111-2222-3333-4444-555555555555"
},
"info": 8
}
}
"@

$response = Invoke-RestMethod 'http://192.168.100.27:10000/retrieve' -Method 'POST' -Headers $headers -Body $body
$response | ConvertTo-Json

Or if you want to use CURL

curl --location 'http://192.168.100.27:10000/retrieve'
--header 'Content-Type: application/json'
--data '{
"retrieve_message": {
"seqnr": 0,
"account_auth": {
"user_account": "",
"mac_address": "11111111-2222-3333-4444-555555555555"
},
"info": 8
}
}'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants