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.
JPe
About
- Username
- JPe
- Joined
- Visits
- 1,509
- Last Active
- Roles
- Member
Comments
-
Can someone indicate which 2-relay devices do work on Homey with both inputs Fibaro / Qubino ? I have some Qubino dimmers ZMNHDD1with 3 inputs, but there is only 1 input usable.
-
Does it have to do with COMMAND_CLASS_MULTI_CHANNEL, data: ?
-
did you restart Homey after setting to English?
-
These kind of questions are better answered by the makers of slide hello@innovationinmotion.nl https://www.facebook.com/getslide/?hc_ref=ARRDFocolu_ZnG7JzMtBKDN__jTSFb_5GRQN1ap5xfXWMPdDALD2LeiNtZuqAUdWUx4
-
@caseda Hi, I have a couple of Fibaro FGS221 (2-relay switch) but the problem is that Homey doesn't show the status ON/OFF in Devices and doesn't react on the status changes in flows when they are switched by the connected push-buttons. I looked at…
-
When your motor is DC, you can use this Qubino controller: ZMNHOD1
-
2Be said: Well in the Indigogo mailing there is a link to Vimeo: It was April 10, sorry, impossible for you to find it !!
-
Somfy App you can install from https://apps.athom.com/app/com.somfy then you can pair the remote with Homey. About the language, I'm afraid that is not gonna work, Homey doesn't speak Polish, (yet)
-
Start here: https://developer.athom.com/docs/apps
-
Wat er met de signalen gebeurt, bepaal je zelf in je Flows, als een contact gesloten wordt, kun je in een flow bepalen wat er moet gebeuren, in een andere flow kun je dan weer bepalen wat er moet gebeuren als het contact weer open gaat. Zo ver ik we…
-
Als je lampen de Lux-meter verlichten dan zal de waarde al gauw boven de 15 komen als de lampen aan gaan en dus het licht weer uitschakelen.
-
In your case, there is actually no "channel" in the message because there is only one device, as an example, in my case, I have a remote for max. 4 curtains so these are 4 channels. In your case, if you have 2 or more remotes, they should all sent o…
-
the 7,8 is just a random position where always stands a "0" because in your loggings, the most received messages starting with zero. About the first bit, I'm not so sure why it's sometimes different, that's why I suggested skipping bit-0 in the part…
-
Congratulations on this result. Hope you will make a complete description of how it can be handled the easiest way with the knowledge you have now, great!
-
It's probably possible to use the variable channel in an alternative way: ------------------------------- const data = { address: util.bitArrayToString(payload.slice(1, 22)), channel: util.bitArrayToString(payload.slice(7,8)), //…
-
About the first bit, I don't know, that's why I suggested skipping bit-0, maybe it changes when there is a long time between the clicks. Slice(22,24) indicates the bits 22 and 23 being the last 2 bits (and not 23,25 as I said before) this is used fo…
-
1.5.11 * [Z-Wave] Fixed a communication issue * [Z-Wave] Fixed a bug where timeouts could occur when a node sent messages out-of-order * [Zigbee] Fixed a communication issue * [Core] Homey no longer needs a reboot to switch timezones * [Core] Fi…
-
@vaderag your question was answered long before you wrote it, see the update news on May-2
-
stekker er uit 10 min. wachten, stekker er in wacht tot Homey weer helemaal bij zinnen is en probeer het dan nog eens...
-
npm install -g athom-cli for update https://github.com/athombv/node-homey-rfdriver
-
Great, I like the way you handle this and how eager you are to learn, lots of people just want a solution and don't care how it's working, that kind of people I don't want to spend my time on. To be clear, I'm not a real programmer but dit some codi…
-
Sorry, I didn't realize that you are using a two-button remote, I just popped in half way and forgot to read the start of this item. This explains the "01" and "10" at the end of the payload, these are the indicators of both buttons, and of course,…
-
DIYglenn said: This is the payload that you received, (payload.length === 24) you have to define an Address part, that is the pattern that Homey uses to recognize, so that part must always be the same, in this case, you can use the p…
-
Had problems with Qubino devices not showing power, the reason was: Setting this parameter to 1 solved my problem! Yours to?
-
@Petervdk no problems so far, only the restart to update the https://developer.athom.com/tools/zigbee page. (see item above)
-
@TedTolboom Today I added my first 2 Zigbee devices without any problem and they show up fine in ''Devices' but in the https://developer.athom.com/tools/zigbee page the second one does not show the right information, it says Unknown EndDevice ( I'…
-
@Tommy https://github.com/athombv/com.fibaro/blob/master/config/drivers/FGBS-001.json this is the file you looking for.
-
HansS said: HansS said: I try to make a flow with a virtual device to controle the light temperature. In my spot 4 are innr spots (warm/Cold leds) With the VD flow I can use a tag to dim the lights together but I can't find a tag to se…
-
-
I'm not a programmer too, just tried your Lines en expanded a little to see the result: // my script var TextA = "Remove This. I only want this"; var TextC = "Remove This. "; var TextB = TextA.replace(TextC, ""); console.log(TextB) return(TextB…