This is the forum archive of Homey. For more information about Homey, visit the Official Homey website.
The Homey Community has been moved to https://community.athom.com.
This forum is now read-only for archive purposes.
The Homey Community has been moved to https://community.athom.com.
This forum is now read-only for archive purposes.
home78
About
- Username
- home78
- Joined
- Visits
- 90
- Last Active
- Roles
- Member
Comments
-
I couldn't resist and also updated to rc11 today. Z-Wave seems more responsive and more stable overal. Send-queues are now mostly empty. Also, the Desktop and iPhone app are much more responsive than before. Heal command works and the routes showi…
-
I will also wait a little longer, since I finally got Homey (and my Z-Wave network) reasonably stable again after it became pretty useless by December last year...
-
I'm also in the process of removing devices and apps which might be causing trouble. Removing apps helps as this frees resources. Right now I've limited the number of apps to the bare minimum but still have to reboot Homey once or twice a day...
-
Moved the following to GitHub where it belongs. Settings (in iOS app, build 5): * Trying to open Led Ring in settings screen makes the app crash. * Changing Voice Settings, Playback rate shows "Something went wrong". Trying to change Playback voi…
-
Moved the following to GitHub, appologies. Its only after a few days I found out there is actually a filter that limits the devices in the devicelist to the ones in a certain zone. I have a few suggestions (for the iOS app): * the open door icon d…
-
home78 said: Anyone using also WALLC-S (v2) switches in their home and experiencing fast battery drain issues? Really no one else having battery issues or is no-one using this device? This might be a solution to mitigate this effect: se…
-
bvb said: @home78 I had the same issue and changed the battery from the switch and it was working again. I set the "wake up" of the Switch to 86400 Seconds (24 hours) instead 1600 seconds (30 Minutes). I hope the battery will now survive longer…
-
ingmar said: Fyi, my zwave problems are solved now. It has nothing todo with 1.5, but with devices who had bad or no reception anymore. One thing what did change is the zwave graph, actually the graph is fixed now as in the previous releases (&…
-
I would like to invoke some app functionality, probably need to use the WebAPI for this. Does anyone have an example of say, how to send an email using the Email Sender app? For example: let Mailer = await Homey.apps.getApp({ id: 'email.sender' } )…
-
bvdbos said: @nagash1979If you login through http:// instead of https:// the doubles will be gone probably That does indeed seem to work, although I don't like the idea of having an insecure connection to my home network. @bvdbos Is it…
-
zimbra said: danone said: RuudvB said: ingmar said: Hi, great update but since I am on 1.5.1. I have huge delays with flows being executed. Walking into a room with a fibaro (or aeotec) motion sensor normally switches…
-
To get a list of all devices with low battery (can be called from a flow both from the condition or from the then column): let count = 0; let devices = await Homey.devices.getDevices(); Object.values(devices).forEach(device => { if (devi…
-
Here's one that shows all flows in the correct folder-hierarchy: let folders = await Homey.flow.getFolders(); let flows = await Homey.flow.getFlows(); log('Flows'); log('='.repeat(60)); function showFolder(folder, depth) { log(' '.repeat(…
-
To get a list of ZWave devices and their node number: let devices = await Homey.devices.getDevices(); let count = 0; Object.values(devices).forEach(device => { if (device.driver.metadata && device.driver.metadata.zwave) { log(d…
-
I've written a small script to retrieve all devices in a zone and all devices in zones contained in that zone: let zone = 'Boven'; let zones = await Homey.zones.getZones(); let devices = await Homey.devices.getDevices(); log('Devices in zone', …
-
Another example of how sets can be used. Use-case: we have multiple indicators (like washing machine ready, its raining outside, doorbell is ringing, etc.) but we want the LED-Ring of Homey to represent only one of them. Implementation: Each indi…
-
I will give an example of good use of the "Sets" app. It only uses part of the functionality, but I was able to replace two other apps with "Sets" which makes me think its a good fit. The use-case is as follows: I have an electric water boiler for …
-
I know mixing secure and unsecure devices can be problematic. Is it possible to add all devices as non-secure devices (even if they support secure communication)?
-
Anyone using also WALLC-S (v2) switches in their home and experiencing fast battery drain issues?
-
Currently I have 4 states for my washing machine. First state is OFF and the energy level is below the L0 threshold. When the machine is turned on, the level is between L0 and L1 which causes the STANDBYE state to become active. After starting the w…
-
A little followup on this one: I've had someone from Athom customer support remove one of the Homey devices linked to my account. It seems that one of the devices was a remnant of an another Homey device I got replaced in the past.
-
I'm using ZWave.me WALLC-S V1 and V2 switches in my home. With the old ones (V1) I'm able to link a single switch to multiple dimmers, however with V2 I'm unable to accomplish this although the configuration method is exactly the same. It looks like…
-
Great App. Considered making something like this myself to get rid of all the dummy KaKu switches. One additional request though: would it be possible to either customize the description of the device modus that are used in the Homey interface? Fo…
-
Pietje5 said: Also on the november app the same. When i remove the app completely and pair with the zwave tool from Homey i get the same message: Multi Channel Nodes worden opgehaald and then it stucks again. Seems to be a Homey issue. S…
-
Steefph said: Included the Homey into my Zipabox Z-wave network. Where it could see all the devices before (not working correctly but that is something else) now it does not see them or, I can't find the button to update the network I…