Search found 19 matches
- Monday 20 January 2020 23:15
- Forum: Python
- Topic: Python plugin: Presence detection from wireless router
- Replies: 1108
- Views: 202172
Re: Python plugin: Presence detection from wireless router
Hi EscApe, Awesome plugin, thank you very much. I've just combined a homelab upgrade to edgerouter + unifi APs with an upgrade to the latest version of your script. I've been through the thread for relevant info but still need some clarity. Firsty, it looks like you've catered already for the setup ...
- Wednesday 13 November 2019 0:36
- Forum: Python
- Topic: Python plugin: Xiaomi Mi Robot Vacuum
- Replies: 311
- Views: 116494
Android Mobile App Button Actions
So as per the screenshot the default button position is 'Clean'. If I reselect 'Clean' nothing happens to the robot. If I press 'Clean' in the webgui then the robot cleans as expected.
Anyone else experienced this?

Anyone else experienced this?

- Wednesday 13 November 2019 0:29
- Forum: Python
- Topic: Python plugin: Xiaomi Mi Robot Vacuum
- Replies: 311
- Views: 116494
Re: Python plugin: Xiaomi Mi Robot Vacuum
Thanks, you set me on the right track. The current latest release of python-miio added the requirement for python 3.7. By appending the version number 0.4.6 to the install scripts has it working fine. Hi Guys, Trying to install the python-miio but it’s throwing a minimum python version error, ...
- Thursday 07 November 2019 17:14
- Forum: Python
- Topic: Python plugin: Xiaomi Mi Robot Vacuum
- Replies: 311
- Views: 116494
Re: Python plugin: Xiaomi Mi Robot Vacuum
Hi Guys,
Trying to install the python-miio but it’s throwing a minimum python version error, requesting version >3.6.
Thus doesn’t seem available for my pi stretch install which is on the latest python 3.5.3 which is the version mentioned in all the ‘guides’ for install.
Any advice?
Trying to install the python-miio but it’s throwing a minimum python version error, requesting version >3.6.
Thus doesn’t seem available for my pi stretch install which is on the latest python 3.5.3 which is the version mentioned in all the ‘guides’ for install.
Any advice?
- Monday 07 January 2019 15:32
- Forum: dzVents
- Topic: My dzVents Bathroom Humidity Control script
- Replies: 39
- Views: 11231
Re: My dzVents Bathroom Humidity Control script
Great script. I need to fine tune the settings and position of the humidity sensor but initial impressions are great. I have it toggling a sonoff that powers the fan. Is there anyone willing to 'help' me alter to code to turn the Force Fan Device into a toggle rather than simply and ON for X minutes ...
- Monday 04 June 2018 18:07
- Forum: Zigbee
- Topic: Xiaomi Smart Home Suite (very cheap) compatibilty?
- Replies: 2452
- Views: 528422
Re: Xiaomi Smart Home Suite (very cheap) compatibilty?
Anyone using their wireless switches to switch yeelights via a script?
viewtopic.php?f=11&t=13016&p=182516#p182516
viewtopic.php?f=11&t=13016&p=182516#p182516
- Monday 04 June 2018 16:33
- Forum: Switches and Scenes
- Topic: [Plugin now available in Beta] Help with Yeelight Bulb
- Replies: 350
- Views: 69901
Re: [Plugin now available in Beta] Help with Yeelight Bulb
I recently moved my domo install to an Rpi3+ and used the beta available at the same time: v3.9317 Prior to this I was using Xiaomi wireless switches to toggle yeelights using the following dzvents script, it worked perfectly: return { active = true, on = { devices = { '$Wireless Switch 1 ...
- Thursday 05 October 2017 20:43
- Forum: Suggestions
- Topic: [677] Tado thermostat
- Replies: 45
- Views: 20769
Re: [677] Tado thermostat
Ok, I am running the script 'as-is' from the git, and it's restarting the eventsystem and OZW everytime it does a JSON update. I've set the update wait to 180s, hence the 3 minute restart! See http://www.domoticz.com/forum/viewtopic.php?t=19694#p152622 for the log reports. Can anyone else confirm ...
- Wednesday 04 October 2017 22:19
- Forum: Suggestions
- Topic: [677] Tado thermostat
- Replies: 45
- Views: 20769
Re: [677] Tado thermostat
Don't incorporate any changes yet as it's causing problems and I need to troubleshoot. Basically the script is doing what I wanted it to but every time it runs it causes the domoticz eventsystem and openZwave to restart == big problems! I need to go back to the script as you supply it, test it as is ...
- Wednesday 04 October 2017 21:34
- Forum: dzVents
- Topic: dzVents constantly restarts 'EventSystem' and OpenZWave
- Replies: 2
- Views: 950
Re: dzVents constantly restarts 'EventSystem' and OpenZWave
Thanks for the suggestion. I expanded on it a little and have found the cause to be a php file that runs every 3 minutes and gets some details from the tado api, it then passes them to domoticz via json. Not sure why it's causing the eventsystem and ozw to restart, so now I need to troubleshoot that ...
- Tuesday 03 October 2017 14:23
- Forum: dzVents
- Topic: dzVents constantly restarts 'EventSystem' and OpenZWave
- Replies: 2
- Views: 950
dzVents constantly restarts 'EventSystem' and OpenZWave
With dzVents enabled the 'EventSystem' is restarted every 3 minutes and the scripts re-written, OpenZWave is also restarted on a similar frequency - with dzVents disabled neither of these things happen. I'm certain this wasn't the case a few weeks ago, but I'm noticing more and more basic timer ...
- Wednesday 13 September 2017 1:55
- Forum: Suggestions
- Topic: [677] Tado thermostat
- Replies: 45
- Views: 20769
Re: [677] Tado thermostat
Hi Guys, Hopefully you can help me. I wish to use the tado api to find out whether or not tado is current calling for heat and use this to toggle a virtual switch. The end goal is to make 2 set's of electric underfloor heating systems 'smart' by leveraging the power of tado geofencing and heating ...
- Wednesday 13 September 2017 1:27
- Forum: dzVents
- Topic: DzVents Xiaomi Switch
- Replies: 3
- Views: 1896
Re: DzVents Xiaomi Switch
Note the change: roomSwitch.state == 'On' to roomSwitch.state == 'Click' Try this and report back: return { active = true, on = { devices = { 'XiaomiSwitch' } }, execute = function(domoticz, roomSwitch) if (roomSwitch.state == 'Click' ) then domoticz.devices('Lampka Router').switchOn() domoticz ...
- Monday 11 September 2017 23:44
- Forum: dzVents
- Topic: DzVents Xiaomi Switch
- Replies: 3
- Views: 1896
Re: DzVents Xiaomi Switch
If you are referring to the xiaomi wireless switch then the "On" state doesn't exist. The switch returns 'Click' 'Double Click' 'Long Click' and 'Long Click Release' so you must use those in your code. Have a look at this and let me know if you need more help: return { active = true, on = { devices ...
- Monday 11 September 2017 16:04
- Forum: Others
- Topic: 5ch led WiFi controller
- Replies: 5
- Views: 2476
Re: 5ch led WiFi controller
Adding the device as an RGBW Arilux AL-LC0x device does provide very basic on/off control of the white channel only. There is no colour or brightness control whatsoever, so some more work is required, but it seems the basic framework for control of the box without firmware modifications does exist.
- Monday 11 September 2017 15:46
- Forum: Others
- Topic: 5ch led WiFi controller
- Replies: 5
- Views: 2476
Re: 5ch led WiFi controller
I've purchased a few of these in hope of getting them to work with domoticz. They are not esp8266 devices, they use the Hi-Flying LPB-100 chip, information and datasheets are available here: http://www.hi-flying.com/products_detail/productId=52.html https://preview.ibb.co/c2jtrv/3102353225502511816 ...
- Tuesday 08 August 2017 22:49
- Forum: Zigbee
- Topic: Xiaomi Smart Home Suite (very cheap) compatibilty?
- Replies: 2452
- Views: 528422
Re: Xiaomi Smart Home Suite (very cheap) compatibilty?
Hey Corbin et al. Epic work on getting this all working with framework. Wondering if anyone can aid me in troubleshooting a problem though? I run domoticz in docker on an UnRaid server, I have OpenZwave through an Aeon stick all working well with some fibaro dimmers etc. In the process of adding ...
- Saturday 05 August 2017 23:43
- Forum: Switches and Scenes
- Topic: [Plugin now available in Beta] Help with Yeelight Bulb
- Replies: 350
- Views: 69901
Re: [Plugin now available in Beta] Help with Yeelight Bulb
If it's of use to anyone I managed to fix my issue, which was eventually everything seemingly working with the wiki scripts yet nothing actually happening on the bulb. I had to remove 'sudo' from the commands, hence: runcommandoff = "echo -ne '{\"id\":1,\"method\":\"set_power\", \"params\":[\"off ...
- Friday 04 August 2017 19:26
- Forum: Switches and Scenes
- Topic: [Plugin now available in Beta] Help with Yeelight Bulb
- Replies: 350
- Views: 69901
Re: [Plugin now available in Beta] Help with Yeelight Bulb
@westcott - Making the change you suggested eliminated the string vs number error However the dimmer for white temperature control still doesn't work (as in the dimmer is set at 0% and cannot be moved) Here is the code from the wiki commandArray = {} DomDevice = 'nameofyourdummyselectorsetasdimmer ...