Great info thanks @Databitz I will look into the Bosch alarms
these are the 3 resources I have used in the past
https://www.global-mark.com.au/
https://equipment.erac.gov.au/Registration/EquipmentSearch.aspx?atn=public
I believe if they are OK in AU then they are good for NZ, Disclaimer: well thatās what I have read.
There are not different ZigBee channels on different regions.
There is a very long thread about Australian certified devices.
NZ and Oz have a combined approvals regime, if it is certified for AU it is certified for NZ and vice versa. It would pay the search or ask there. Youāll get a wider audience.
Search for Allterco and Shelly if your looking on global-mark.
https://www.global-mark.com.au/certificate-search/
Most devices are under Allterco, some of the latest are under Shelly. Allterco was the name of the company previously and Shelly was a brand they had, but now the company/group is also called Shelly.
Zigbee is the same channels and frequency.
However, Z-Wave, if they still do, use different frequencies depending on the region, I am sure the Z-Wave devices arenāt allowed in NZ or AU if the frequencies arenāt registered for that region as they could cause interference which is illegal so you have to purchase NZ licensed Z-Wave devices.
This may have all changed in the past 2 years but I doubt it.
I know, I didnāt argue with the statement that z-wave uses different frequencies in different regions.
sorry replied to the wrong post DOH
Hi fellow HA kiwiās
Can anyone explain how to use the previously mentioned Metservice home assistant integration? Iāve not seen it available when adding an integration in HA.
I aim to read in a forecast for my Waikato location so that I can alert on forecast parameters (eg frost).
Many thanks.
GitHub - ciejer/metservice-weather: Metservice New Zealand component for Home Assistant - follow that
Excellent, thanks.
The data coming back from the Metservice integration looks great. To use lat/long instead of a town/city Iād need to use the mobile API option, right?
Anyone know how to get one?
The GitHub discussion suggests it is a API key for the Metservice iOS app but no detail on how to obtain it.
I note that the forecast is not a sensor but named weather.Metservice_hamilton so Iām currently unsure how Iād specify that programmatically for notifications etc.
Cheers
The forecast still has has some attributes which you can get to like this:
{{ state_attr('weather.metservice_hamilton', 'temperature') }}
That will get you only the current temperature.
The weather sensors used to have the future forecasts also as attributes, but they donāt now.
A change was signaled last year and recently the future forecast attributes has been removed. See here for how to get at the forecast data now:
2023.9: New climate entity dialogs, lots of tile features, and template sensors from the UI! - Home Assistant
So now you need to use a service something like this:
- trigger:
- platform: time_pattern
hours: /1
action:
- service: weather.get_forecasts
data:
type: daily
target:
entity_id: weather.metservice_hamilton
response_variable: daily
sensor:
- name: Hamilton Temperature Max Today
unique_id: hamilton_temperature_max_today_new
state: "{{ daily['weather.metservice_hamilton'].forecast[0].temperature }}"
unit_of_measurement: Ā°C
- name: Hamilton Temperature Max Tomorrow
unique_id: hamilton_temperature_max_tomorrow_new
state: "{{ daily['weather.metservice_hamilton'].forecast[1].temperature }}"
unit_of_measurement: Ā°C
- name: Hamilton Condition Tomorrow
unique_id: hamilton_weather_condition_tomorrow_new
state: "{{ daily['weather.metservice_hamilton'].forecast[1].condition }}"
Thanks for the useful info.
Interested in ideas anyone has to automate turning off devices when there is a lot of load on the grid, like expected tomorrow morning.
Weather: Power cuts possible on one of coldest mornings of 2024: Auckland in for frosts, subzero temperatures around NZ (newstalkzb.co.nz)
The ask is to turn off non essential heating, and high load devices during the peak times.
Iāve currently got an automation which kinda does the job, based on fossil fuel generation. It triggers off the āElectricity Maps Grid fossil fuel percentageā when it exceeds 22%.
Weird, I only have weather.metservice In my entities.
In my case I chose a city (Hamilton) and gave it a name āhamiltonā replacing the default word āhomeā. This added _hamilton to the weather entity.
Hi Cody, thanks again for the integration. I just added today and it hasnāt seem to downloaded any data. I have the 9-12 free hours. Just like the other user below. Any support? (I am very beginner at this)
Has anyone had the Contact Energy integration working? I would love to know. Thanks a lot
I did, but in my old system. I have been rebuilding, but not got up to that but yet.