Search found 14 matches
- Friday 28 February 2020 15:11
- Forum: Python
- Topic: Python plugin: Xiaomi Mi Robot Vacuum
- Replies: 311
- Views: 119085
Re: Python plugin: Xiaomi Mi Robot Vacuum
2020-02-28 14:15:37.545 Error: roborock hardware (19) thread seems to have ended unexpectedly but the vaccum seems to be connected anyway, is there a way to disable these error masseges? it fill my log all the time. try to set lower "Update interval" - in my case - 15s if I remember correctly there ...
- Friday 28 February 2020 14:23
- Forum: Python
- Topic: Python plugin: Xiaomi Mi Robot Vacuum
- Replies: 311
- Views: 119085
Re: Python plugin: Xiaomi Mi Robot Vacuum
for it to work again i need to remove the plugin and restart domoticz, then ad the plugin again for it to work. Do you really need to REMOVE the plugin? In my case this is "usual" way THIS plugin works - any changes can be applied only by restarting Domotics after re-configuring/restarting plugin ...
- Monday 25 November 2019 22:35
- Forum: Python
- Topic: Python plugin: Xiaomi Mi Robot Vacuum
- Replies: 311
- Views: 119085
Re: Python plugin: Xiaomi Mi Robot Vacuum
I want to add a second vacuum cleaner from same generation, what is de best solution for this? Because the added hardware does not contain parameters like IP adres, ID and token. Make copy of file miio_server.sh e.g. miio_server2.sh Update IP and TOKEN for new robot and change PORT (--port 22223 ...
- Thursday 13 April 2017 9:23
- Forum: Python
- Topic: Python Plugin Beta testers - please read this
- Replies: 159
- Views: 33450
Re: Python Plugin Beta testers - please read this
I got the same problem with "import uuid".
- Saturday 25 March 2017 8:10
- Forum: Python
- Topic: Problems with non-latin Names of Devices on Python framework
- Replies: 2
- Views: 841
Re: Problems with non-latin Names of Devices on Python framework
@Dnpwwo
Great, thank you.
Great, thank you.
- Friday 24 March 2017 17:23
- Forum: MySensors
- Topic: MySensors Arduino Nano FTDI on Rpi3-Problem
- Replies: 5
- Views: 2302
Re: MySensors Arduino Nano FTDI on Rpi3-Problem
Why on chipset FTDI is problem ? May be not too late. Solution: https://www.raspberrypi.org/forums/viewtopic.php?f=91&t=59420#p455407 In short: it's a hardware bug on the nano V3 boards (may be some other...). Pin 26 of FTDI should be connected to ground, but it's not. Solution is solder blob ...
- Monday 20 March 2017 12:51
- Forum: Others
- Topic: LIFX Support
- Replies: 40
- Views: 15533
Re: LIFX Support
Would of course be a bit much to ask if you could add color wheel support as well but will certainly look forward to that if you do decide to :) Currently Domoticz's RGB and RGBW switches sends to plugin only Color(Hue) and Brightness, but no Saturation. So it's very limited support to set Lifx ...
- Saturday 11 March 2017 15:09
- Forum: Python
- Topic: Problems with non-latin Names of Devices on Python framework
- Replies: 2
- Views: 841
Problems with non-latin Names of Devices on Python framework
I got in some kind of problems, when using non-latin (cyrillic in my case) names for devices: myName="Тест" Domoticz.Log("myName = " + myName) Domoticz.Device(Name=myName, Unit=1, Type=244, Subtype=73, Switchtype=7).Create() Domoticz.Log("Device Created") Log: 2017-03-11 16:45:13.893 PluginSystem: St ...
- Saturday 11 March 2017 10:57
- Forum: Python
- Topic: Bugs in Python framework and/or Domoticz
- Replies: 12
- Views: 2751
Re: Bugs in Python framework and/or Domoticz
@Dnpwwo, thank you.
With Domoticz 6905 and switch Type 244 everything work ok.
BTW, seems it's a typo in wiki example "E.g: Domoticz.Log(Device[2].Name)" should be "E.g: Domoticz.Log(Devices[2].Name)"
With Domoticz 6905 and switch Type 244 everything work ok.
BTW, seems it's a typo in wiki example "E.g: Domoticz.Log(Device[2].Name)" should be "E.g: Domoticz.Log(Devices[2].Name)"
- Friday 10 March 2017 15:44
- Forum: Python
- Topic: Bugs in Python framework and/or Domoticz
- Replies: 12
- Views: 2751
Re: Bugs in Python framework and/or Domoticz
Hi @Dnpwwo, Domoticz V3.6905 accepted pull request #1308 I created device with Domoticz.Device(Name="Test", Unit=1, Type=244, Subtype=73, Switchtype=7, Used=1, DeviceID="aabbccddee").Create() Device with an ID(IDX) of "29" and DeviceID (ID) of "aabbccddee" is created and listed in "Devices" page ...
- Sunday 12 February 2017 17:56
- Forum: Others
- Topic: LIFX Support
- Replies: 40
- Views: 15533
Re: LIFX Support
My first attempt to write Lifx control, using new Python plugin: Requires: • Latest Domoticz with Python plugins enabled (now beta V3.6675 and higher) • lightsd daemon by lopter https://github.com/lopter/lightsd Tested on raspberry pi. Plugin itself should work on windows, but daemon only on nixs sys ...
- Thursday 02 February 2017 14:24
- Forum: Python
- Topic: Python Plugin Beta testers - please read this
- Replies: 159
- Views: 33450
Re: Python Plugin Beta testers - please read this
I can find "Plugin for UniPI" at the end of the dropdown list on the Hardware tab. That indicates the file is found by the plugin system, but it does not load. @ubee, I got in the same situation several times, without changing version of Domotics. Moreover – already added plugin continues work n ...
- Wednesday 01 February 2017 16:22
- Forum: Python
- Topic: Python Plugin Beta testers - please read this
- Replies: 159
- Views: 33450
Re: Python Plugin Beta testers - please read this
If you really need numbers that big I would suggest setting the heartbeat to 17 or 18 and doing what you want to do on every 4 call. Dnpwwo, thank you! Is it possible in any way to set DeviceID while creating device? It’s look like that now it is automatically generated. Can be useful for storing d ...
- Monday 30 January 2017 12:33
- Forum: Python
- Topic: Python Plugin Beta testers - please read this
- Replies: 159
- Views: 33450
Re: Python Plugin Beta testers - please read this
@Dnpwwo: if I set Heartbeat interval to 70 and more, and debugging in plugin is On, I start getting messages in log: 2017-01-30 14:16:00.539 Error: A1 hardware (9) thread seems to have ended unexpectedly message is logged every 30 seconds, except times when onHeartbeat called Plugin itself continues ...