08-08-2023 11:29 AM
I feel like the Google Home app could use a matter / thread network management page.
I have a number of matter devices (eve home products) and a number of thread lightbulbs (nanoleaf essentials bulbs) but it's happened a few times now, but all of them have gone offline at once. So I figure it can't be the individual devices.
The nanoleaf app shows that all the bulbs have defaulted to Bluetooth as there is no thread network available.
So my work around for the moment is to reboot all my nest displays (All thread boarder routers) and hope that the thread network comes back online.
It seems to me that the Google home app should have some way of seeing the status of your matter/thread network; what devices are connected, if the network is up or not and an option to restart the whole thread network without rebooting the nest hub.
Answered! Go to the Recommended Answer.
08-12-2023 02:08 PM
Hi domwhewell,
Thanks for reaching out. We appreciate people who are keen on sharing their thoughts with us. We're always looking for ways to improve. I'd suggest you submit feedback about it, here's how.
Regards,
Juni
08-12-2023 02:08 PM
Hi domwhewell,
Thanks for reaching out. We appreciate people who are keen on sharing their thoughts with us. We're always looking for ways to improve. I'd suggest you submit feedback about it, here's how.
Regards,
Juni
08-25-2023 12:47 PM
I agree this is needed especially for when we have issues, like I am having, I cannot add any Thread matter devices to my hest hub gen 2 but can't see why?
09-08-2023 03:59 PM
Totally agree...
I'm new to Matter & Thread, have some Aqara door and window sensors that are Matter as well as some Nanoleaf Essential light bulbs and although they show up in the Google Home App and Script Editor they are often offline. Keep looking for an app or place to view my Matter network, like I can see my mesh network and see what devices are connected to what Mesh Unit (have 80'ish devices on my Wi-Fi & 92 devices showing in the Google Home App)
Trying to make automations to control the brightness of the lights and experimenting with different options as Nanoleaf App seems useless for these bulbs unless you want to use the app all the time (not multi user friendly when your wife isn't into it!)
This script doesn't change the brightness of the lights, even tossed in a delay - have a smart switch currently turning them on as it was there prior and I haven't swapped it out as I can't even tell Google to turn on the bulb if power is on currently.
metadata:
name: Stair light on adjust day brightness # Choose a short name that summarizes important starters and actions, like “Sunset lights”.
description: Stair light 90% during daytime # Write a detailed description that includes everything the automation does, like “At sunset, on weekdays, close blinds, turn on lights to 50%, and play the sunset playlist on certain speakers.”
automations:
# “starters” and “actions” are required; “conditions” are optional.
# Use Ctrl + Space to see autocomplete suggestions.
# ---- STARTERS ---- #
# Starters describe events that will start the automation.
# To add more than one starter, duplicate the "- type" section under "starters".
# If you add multiple starter events, any one of them happening will start the automation.
starters:
- type: device.state.OnOff
state: on
# [available operators: is, isNot]
is: true
device: Entry Stairs Light - Entry
# ---- CONDITIONS ---- #
# Conditions are optional. Delete this section if it’s empty.
# Conditions will prevent an automation from starting if the conditions aren’t met.
# See g.co/home/script-editor-docs for documentation about how to use logical operators like “and”, “or”, and “not”.
condition:
type: time.between
# Optional. Accepts either clock time (10:00:00 AM, with seconds optional, or in a 24 hour format), or 'sunrise' or 'sunset', with an optional offset ('sunrise+10m', for instance)
before: sunset # HH:MM (24 hours format). Adjust time as needed
# Optional. Accepts either clock time (10:00:00 AM, with seconds optional, or in a 24 hour format), or 'sunrise' or 'sunset', with an optional offset ('sunrise+10m', for instance)
after: sunrise
# Optional. Days of the week to apply condition on.
weekdays:
- MON
- TUE
- WED
- THU
- FRI
- SAT
- SUN
# ---- ACTIONS ---- #
# Actions will start when a starter event takes place and all conditions are met.
# Actions will start in the order they appear in the script and with any delay specified.
# To add more than one action, duplicate the "- type" section under "actions".
actions:
- type: device.command.BrightnessRelative # Adjust device relative brightness.
# [Available parameter options: brightnessRelativePercent, brightnessRelativeWeight]
brightnessRelativePercent: 90
devices: Stair Light - Stairway
- type: time.delay
# Adjust duration as needed. Supported units: sec, min, hour
for: 15sec
- type: device.command.BrightnessAbsolute # Adjust device absolute brightness.
brightness: 90
devices: Stair Light - Stairway
- type: device.command.BrightnessRelative # Adjust device relative brightness.
# [Available parameter options: brightnessRelativePercent, brightnessRelativeWeight]
brightnessRelativePercent: 90
devices: Stair Light - Stairway
If anyone sees an obvious fix for this let me know!
Thanks