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.
tb1962
About
- Username
- tb1962
- Joined
- Visits
- 318
- Last Active
- Roles
- Member
Comments
-
@nklerk Works perfect. Only one question... Is it possible to store settings? Now they are lost when you leave the settings page
-
@Phaeton, No all 3 devices are powerswitches (1 fibaro, 1 neo and 1 aeotec)
-
@Emile Since i upgraded to version 1.5.8 i have problems with some devices that homey sometimes can't reach. The exclamation mark on the flowcard shows 'TRANSMIT_COMPLETE_NO_ACK' With version 1.5.3 i did not have these kind of problems. The distance…
-
@peetje2721, If you use Homeyscript you can use the following script: const now = new Date(); const min = now.getMinutes(); const hour = now.getHours() setTagValue('current_time_hour', {type: "number", title: 'current_time_hour'}, hour ); s…
-
I think @peetje2721 is right with the Countdown tool. Countdown is a great and handy tool but you have to use it with care. I had some problems with speech which was stuttering a lot. I could not find the cause for it. But Homey Logger showed 2 flow…
-
Is anyone using HomeyScript Betterlogic having problems after updating HomeyScript to version 1.0.3? I get an exception when reading a variable using apiGet or write to a variable using apiPut
-
@Lithium if you want simple setTimeout functionality you can use this: _.delay(function(test) { }, 1000); or you can use this: async function wait (timeout) { return await new Promise((resolve) => { _.delay(function(text) { …
-
Because i tried various powerbanks that didn't work and @cbh reported that his RavPower works, i mailed to RAVPower if it is wise to use a powerbank this way. They reported that although it should work with model RP-PB058, they don't suggest to use …
-
@danone Thanks for sharing this info. Do you know any place where to buy this powerbank. It's an older one. I have an newer model and with that it absolutely does not word
-
@DIYglenn I do not own these smoke-detectors but i think you can't connect them to Homey. As far as i can see these smoke-detectors use a closed system to connect between master and slave
-
@cbh I indeed have an Anker device. But feel free to find a powerbank that will work.
-
@danone Anker does not work. This powerbank can not and power a device and be powered the same time. This is the problem with most powerbanks. Also problem with most powerbanks is that when you disconnect it from outsource it stops powering your d…
-
@Traveler If you use Android, you can use MacroDroid. MacroDroid is an app like Tasker but simpler to use. With this app you can modify notification sound per app and depending on the notification text
-
@exiof As far as i know, you can't. There is no api interface. That's needed to use the app from HomeyScript. Because i also want that option i have already commented on this in the app store. Please add one comment there. At this time i have sol…
-
@Lurendrejer If you are using your that you posted a few days ago, try modifying the line device.setCapabilityValue('onoff', false); Create a function to set the state to off: async function setStateOff(device) { await device.setCapability…
-
@Nattelip What did you try to ask?
-
@Lurendrejer I have rewriten your script a little so you can use it in the and / or column: let devices = await Homey.devices.getDevices(); function anyLightOn(devices) { let result = false; _.some(devices, device => { if (d…
-
@cbh Well, another thing you could look at is de app.usage.cpu. This value should be as low as possible (between 0... 1) but it can be more than 1. That doesn't have to be a bad thing but if that's for a longer periode of time maybe you should res…
-
app.usage.pss + app.usage.swapPss is the same as app.usage.mem and (app.usage.mem / (1000*1000)) is the same as memory usage given per app on the system page. So I think swappPss is nothing special. It is the swap usage in bites. I was a bit mislead…
-
@cbh and @canedje You can loop through the installed apps like this: const apps = await Homey.apps.getApps( ); let totalSwap = 0; _.forEach(apps, (app) => { totalSwap += app.usage.swapPss; console.log(app.id + ', pss: ' + app.usag…
-
@Baron You can trigger a flow this way: Homey.flow.triggerProgrammaticFlow({id : '1a921f06-1c47-4bb5-8fbc-d5c3bc8aae8f'}); to filter out bulbs that are color, you can use the device.capabilities object methode 1: device.capabilities.light_mode.va…
-
@Baron Unfortunately, there, as far as i know, no way to set all lights on or off at ones. But I have modified your script a little: let devices = await Homey.devices.getDevices(); //get all devices from homey let light_state = true; //boolean …
-
@Baron if you just want to read the onoff state, you can do it this way: Homey.devices.getDeviceState({id :'123abc'}).then( (state) => { if (state.onoff) { } else { } })
-
I have been in the same situation. My flows where getting too complicated and too messy. This was because of the number of devices and the limitations of the flow editor. Now i have cleaned-up everything. The most complicated flows are now HomeyScr…
-
btwvince said: Maybe a stupid question but I can't find out how to disable the experimental updates. I only can disable all the updates but can't choose to only get the full working ones. @btwvince I have never enabled experimental u…
-
canedje said: Thanks. I installed HomeyScript and did add your script. I saved and tested it in de editor. It returns "undefined", is that what I had to expect as answer? Is there somewhere an overview of commands or a tutorial how to use scr…
-
canedje said: tb1962 said: DrDoom said: Is it possible in this app to select different sounds for different notifications on your phone? It would be handy if the 'door open' notification has another sound to it than 'Smoke Det…
-
canedje said: tb1962 said: I have 17 apps installed. I have created a HomeyScript script that runs each night at 02:00 and checks if swap memory exceeds 150mb (happens approx. ones a week) It then reboots Homey Can you show this …
-
I have 17 apps installed. I have created a HomeyScript script that runs each night at 02:00 and checks if swap memory exceeds 150mb (happens approx. ones a week) It then reboots Homey
-
DrDoom said: Is it possible in this app to select different sounds for different notifications on your phone? It would be handy if the 'door open' notification has another sound to it than 'Smoke Detected' . Or is there another way to do this? …