no, the idea above does not work properly.
However I have figured out, if some are interested.
code part below
if (devicechanged[sensorLogRF]) then
--print(sensorLogRF.." devchanged: "..otherdevices_svalues[sensorLogRF])
inc_raw_text = otherdevices_svalues[sensorLogRF]
inc_text = string.sub ...
Search found 19 matches
- Tuesday 12 January 2021 7:49
- Forum: LUA
- Topic: Lua text sensor trim devicechange text to last digits
- Replies: 3
- Views: 648
- Sunday 10 January 2021 8:06
- Forum: LUA
- Topic: Lua text sensor trim devicechange text to last digits
- Replies: 3
- Views: 648
Lua text sensor trim devicechange text to last digits
Hi all,
With arduino I am sending in to domoticz some data to TEXT sensor.
I am using the following code to trigger if text sensor has some changes. ( rewriting the code now )
if (devicechanged[sensorLogRF] == "[22:51:48] 610ecc_10000001") then
if (otherdevices['Switch'] == 'Off') then ...
With arduino I am sending in to domoticz some data to TEXT sensor.
I am using the following code to trigger if text sensor has some changes. ( rewriting the code now )
if (devicechanged[sensorLogRF] == "[22:51:48] 610ecc_10000001") then
if (otherdevices['Switch'] == 'Off') then ...
- Friday 30 October 2020 8:32
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
What temperatures are reported when you run the following python program?
#!/usr/bin/env python3
from msmart.device import device as midea_device
from msmart.device import air_conditioning_device as ac
import logging
logging.basicConfig(level=logging.DEBUG)
# first take device's ip and id
# pip3 ...
- Wednesday 28 October 2020 19:02
- Forum: LUA
- Topic: LUA - if sensor value then remove from db (devicechanged , table.insert)
- Replies: 2
- Views: 429
Re: LUA - if sensor value then remove from db (devicechanged , table.insert)
Instead i would like to remove, delete the incoming wrong value complately, so have a gap not a fixed value. Any hints here?
The sensor data is store in the devicestatus table and whatever value is in that table will be copied every 5 minutes to the short log sensor table.
The only way I can ...
- Wednesday 28 October 2020 18:16
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
The lines to be outcommented are invalid as I explained earlier. They give text instead of the numbers that domoticz devices expects to receive. That will cause strange results that will cause strange reactions of your Airco unit (changing status, target temp etc without reason)
The outdoor ...
- Wednesday 28 October 2020 8:49
- Forum: LUA
- Topic: LUA - if sensor value then remove from db (devicechanged , table.insert)
- Replies: 2
- Views: 429
LUA - if sensor value then remove from db (devicechanged , table.insert)
Hi all,
The incoming value from AC outdoor sensor in offline state is 102 degC - hence I want to remove it from sending in to domoticz database.
So far i have the script, which checks the incoming value, and make adjustments accordingly - change the value to fixed. Script Attached.
Instead i would ...
The incoming value from AC outdoor sensor in offline state is 102 degC - hence I want to remove it from sending in to domoticz database.
So far i have the script, which checks the incoming value, and make adjustments accordingly - change the value to fixed. Script Attached.
Instead i would ...
- Wednesday 28 October 2020 8:26
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
yes, I am with teh latest update.
Then you will have to comment out lines 284, 299, 311 with incorrect domotica device update commands as I proposed earlier to Alain. But he commented out the incorrect lines.
Ok,
thanks for the hint, I give it a try. done.
Just for the curiousity, the ...
- Tuesday 27 October 2020 13:23
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
yes, I am with the latest update.
- Monday 26 October 2020 16:18
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
Just for the record.
Just got another SK102, and it seems good. It looks like Version2, which is supported, not like V3 which I have tried earlier.
Need to test in detail, but the AC seems to be available and functioning properly under domoticz.
# sudo midea-discover
INFO:msmart.cli:msmart ...
Just got another SK102, and it seems good. It looks like Version2, which is supported, not like V3 which I have tried earlier.
Need to test in detail, but the AC seems to be available and functioning properly under domoticz.
# sudo midea-discover
INFO:msmart.cli:msmart ...
- Monday 26 October 2020 8:43
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
Correct.
mine is OSK103.
If any addvice would come, what to try, I am in to investigate/develop the solution.
Thanks for the hints and help so far.
mine is OSK103.
If any addvice would come, what to try, I am in to investigate/develop the solution.
Thanks for the hints and help so far.
- Monday 26 October 2020 7:42
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
[b]# python example.py[/b]
Traceback (most recent call last):
from msmart.device import device as midea_device
File "/home/test/midea-msmart-master/msmart/device.py", line 17
def convert_device_id_hex(device_id: int):
^
SyntaxError: invalid syntax
[b]# python3 example.py[/b]
{'id': 'xy', 'name ...
- Sunday 25 October 2020 21:50
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
Midea MBT-12N8D6-O Mission II 3,5 kw
App: Midea Air - working good
As per the forum discussions, midea should work...
App: Midea Air - working good
As per the forum discussions, midea should work...
- Sunday 25 October 2020 14:17
- Forum: Other questions and discussions
- Topic: Midea/Inventor (and other brand) Air Condition API
- Replies: 139
- Views: 57874
Re: Midea/Inventor (and other brand) Air Condition API
Hi all,
Iam trying to setup mudea ac in domoticz, without success.
Anything I am doing wrong?, any hints would be appreciated :).
So far:
# midea-discover
INFO:msmart.cli:msmart version: 0.1.23
INFO:msmart.cli:Sending Device Scan Broadcast...
INFO:msmart.cli:Midea Local Data 192.168.1.102 ...
Iam trying to setup mudea ac in domoticz, without success.
Anything I am doing wrong?, any hints would be appreciated :).
So far:
# midea-discover
INFO:msmart.cli:msmart version: 0.1.23
INFO:msmart.cli:Sending Device Scan Broadcast...
INFO:msmart.cli:Midea Local Data 192.168.1.102 ...
- Monday 20 July 2020 8:26
- Forum: Feature requests
- Topic: Auto slide screen improvements
- Replies: 2
- Views: 3804
Auto slide screen improvements
Hi all,
How about to improve the aut slide screen?
Iam using a 12in touch screen, the settings are for 10screens, with auto slide for every 120 sec.
My problem is: at the moment then I use a screen, for example switch on-off something, or looking a cam in frame, after the 120 sec passes, the ...
How about to improve the aut slide screen?
Iam using a 12in touch screen, the settings are for 10screens, with auto slide for every 120 sec.
My problem is: at the moment then I use a screen, for example switch on-off something, or looking a cam in frame, after the 120 sec passes, the ...
- Friday 26 June 2020 7:54
- Forum: Dashticz
- Topic: dashticz in fullscreen
- Replies: 7
- Views: 1301
Re: dashticz in fullscreen
In regards to fullscreen, im facing the following issue, any addvice would be very appreciated :)
config['auto_swipe_back_after'] = 0
config['auto_slide_pages'] = 60 //testing, every min
I put the dashticz to fullscreen, and the screens[] are jumping to next-next etc.
After a while the fullscreen ...
config['auto_swipe_back_after'] = 0
config['auto_slide_pages'] = 60 //testing, every min
I put the dashticz to fullscreen, and the screens[] are jumping to next-next etc.
After a while the fullscreen ...
- Friday 19 June 2020 12:36
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 35810
Re: Dashticz IP Cameras - Features, Fixes & Updates
Hi All,
I didnt respond for the help above, took some time to investigate my issues. Thanks again.
I do undarstand rtsp is not available, hence have to figure out the mjpeg links for the cams, will take some time...
Few notes below, if some can clarify it will be welcome from my side.
Meanwhile at ...
I didnt respond for the help above, took some time to investigate my issues. Thanks again.
I do undarstand rtsp is not available, hence have to figure out the mjpeg links for the cams, will take some time...
Few notes below, if some can clarify it will be welcome from my side.
Meanwhile at ...
- Monday 01 June 2020 16:13
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 35810
Re: Dashticz IP Cameras - Features, Fixes & Updates
With regards to RTSP, that's a limitation of browsers , not Domoticz or Dashticz. The only way (that I know of) to view RTSP streams in a browser is to convert RTSP stream to WebRTC stream first on the server, then view the WebRTC stream in the browser. Up until a few years ago, it was possible ...
- Sunday 31 May 2020 21:48
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 35810
Re: Dashticz IP Cameras - Features, Fixes & Updates
I see,
quite sad as per the rtsp :(. I dont have any other oprion for cam video, just rtsp stream. Any idea or future request to have rtsp available to use?
What is the domoticz ip camera url exactly? I have added the cameras to domoticz, same details as posted above, should i see a separate link ...
quite sad as per the rtsp :(. I dont have any other oprion for cam video, just rtsp stream. Any idea or future request to have rtsp available to use?
What is the domoticz ip camera url exactly? I have added the cameras to domoticz, same details as posted above, should i see a separate link ...
- Saturday 30 May 2020 20:21
- Forum: Dashticz
- Topic: Dashticz IP Cameras - Features, Fixes & Updates
- Replies: 180
- Views: 35810
Re: Dashticz IP Cameras - Features, Fixes & Updates
I do like the idea to have the ip cameras in dashticz, however have difficulties to get it work.
These links are working as expected in the browser, brand: level8 ip camera:
Picture: http://user:[email protected]/snap.jpg
Video ( vlc, stream ): rtsp://user:[email protected]:554/Streaming ...
These links are working as expected in the browser, brand: level8 ip camera:
Picture: http://user:[email protected]/snap.jpg
Video ( vlc, stream ): rtsp://user:[email protected]:554/Streaming ...