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.
MatjaLipu
About
- Username
- MatjaLipu
- Joined
- -
- Visits
- 48
- Last Active
- Roles
- Member
Comments
-
It looks like signal is too loose. Try lowering sensitivity. For me it works sensitivity: 0.2, and gives me more consistent results. Last four bits should be the same for all codes for the same button (so only 5 different last 4 bits for each button…
-
In settings -> system -> geek I see: homey_version 0.8.30 node_version v4.4.2 When you install node modules (npm install) make sure you're using correct node version. Also keep in mind Homey apps does not support packages with native code.
-
Not sure yet, but don't change order.
-
At current state there are a lot of other issues with much higher priority. ofc each feature is welcome, but setting static IP is not what mom should do. :P
-
Run the app from github and press all 10 buttons on remote multiple times. Write output in format button 1 on code1... code2... code3... code4... code1... 1 off code1... ... 2, 3, 4 on/off all on all off each button should have 4 rep…
-
There are no (ping, arp-scan) binaries available in Homey apps, even more, ping and arp packets need root privileges to be sent, which is not possible in Homey app. That's why supporting tracker is required. You can use presence app and TCP connect…
-
In router under DHCP search for address reservation, static IP or similar.
-
I've managed to send a signal that switched socket on and off. Updated github code. I've just copied signal received from remote and send it using api api('POST', '/app/com.aldi.gt9000/send', {data: [0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, …
-
I've created short setup instructions and configuration documentation. Hope this answers some questions. In short: - app needs CORS headers configured (`allowedOrigins` config) - to disable provider simply remove it from config - tracker app …
-
When you're online, go to https://my.athom.com/ and you'll see a link to your Homey. Save this url somewhere. URL should contain bearer_token which is your login token.
-
Thank you. PVOutput - this could be interesting.
-
Aha, community app. Any links?
-
you can simulate speech here http://homey.local/manager/speech-input
-
Once you have defined words it should be a lot easier.
-
There is a wikipedia app . Building a general app that would extract data is not that simple. For starters take a look at readability.com
-
One more note on providers. Default config file enables all providers. Just remove providers you don't want to use. By default only ARP scan auto detects devices. For other providers you need to add devices to tracker.
-
Thank you for your feedback. These json files are storage files for persisting tracker data. storage.path = data.json - persist custom device data ping.path = provider.ping.json - stores configuration about devices we want to monitor (ping) tcp-con…
-
I've published new version. Presence support app is now installed as npm module (see readme). Use example config file as in readme. First install presence app and once confirmed working proceed with Homey app. Until Homey app is approved install it…
-
I have added test code to github https://github.com/matjaz/homey-quigg-gt9000 Testing welcome.
-
I am working on presence detection app. Currently there is not bluetooth support, but could be easily added. https://forum.athom.com/discussion/1033/presence-detection/p1
-
https://webcache.googleusercontent.com/search?q=cache:https://forum.athom.com/discussion/696/help-my-homey-does-not-boot-after-an-update&oq=cache:https://forum.athom.com/discussion/696/help-my-homey-does-not-boot-after-an-update
-
Did you successfully completed http://setup.athom.com/ ? You can try reseting it by turning Homey upside down I setup again.
-
https://developers.athom.com/slack/
-
I have changed signal to signal = new Homey.wireless('433').Signal({ sof: [], eof: [3000, 7000], words: [ [416, 1040], // 0 [1040, 624], // 1 [1040, 832], // 2 [832, 1…
-
On forum they say this raw data is poor quality. They're saying data is enrypted. I'll try using this words asap. Can we capture raw 433 data using Homey? I also have RTL2832U but haven't looked into how to capture raw data. I have rtl_sdr and rtl_…
-
It's using different protocol. And it seems it's encrypted.
-
I put together some testing code, but don't get some consistent results yet. Signal object built with help from Github code I am using is signal = new Homey.wireless('433').Signal({ sof: [], eof: [3000, 7000], words…
-
Mine was updated over night. Try rebooting and wait a few hours. Emile also suggested to do reset without wipe, and update when selecting wifi. At worst, you can also restore firmware https://forum.athom.com/discussion/696/help-my-homey-does-not-boo…
-
Unfortunately I can confirm .27 worsen speech recognition for me. OK Homey trigger is not working for me at all. Also mic training all red. Worst response since .17.
-
It looks like it requires binary dependency which is not available for your platform. I'll remove babel dependency in next release.