Search found 20 matches
- Sunday 26 May 2019 10:48
- Forum: Python
- Topic: set timestamp on update
- Replies: 1
- Views: 560
set timestamp on update
hi I am currently woring on a plugin, which gets information from the internet (api.luchtmeetnet.nl). The sensors are updated on that service every hour and sometimes they are an hour behind or of the hook because of calibration. I got the information in JSON layout and I am able to get the closest ...
- Sunday 14 April 2019 21:13
- Forum: Python
- Topic: Buienradar Weather Lookup Plugin
- Replies: 381
- Views: 88639
Re: Buienradar Weather Lookup Plugin
Hi I started from scratch last weekend. I got the following error in my log: 2019-04-14 20:53:55.457 Status: (Buienradar) Started. 2019-04-14 20:53:56.362 Error: (Buienradar) failed to load 'plugin.py', Python Path used was '/home/pi/domoticz/plugins/domoticz-buienradar/:/usr/lib/python35.zip:/usr ...
- Saturday 30 December 2017 21:18
- Forum: RFLink Transceiver
- Topic: RFLink R46 synology DS214play
- Replies: 1
- Views: 902
Re: RFLink R46 synology DS214play
Update: somehow the application of the mysensors gw and the rflink together created that no information was parsed. I uncoupled the mysensors gw and it now works... next issue...
Verzonden vanaf mijn iPhone met Tapatalk
Verzonden vanaf mijn iPhone met Tapatalk
- Friday 29 December 2017 14:58
- Forum: RFLink Transceiver
- Topic: RFLink R46 synology DS214play
- Replies: 1
- Views: 902
RFLink R46 synology DS214play
I installed domoticz stable version for DSM6.1 on my synology and connected my RFLink R46 to it. The RFLink is found and initialised, but I do not get any data in. 2017-12-29 10:02:07.253 Domoticz V3.8153 (c)2012-2017 GizMoCuz 2017-12-29 10:02:07.254 Build Hash: 494fff7-modified, Date: 2017-07-30 12 ...
- Monday 13 March 2017 11:18
- Forum: RFLink Transceiver
- Topic: Update with Raspberry PI. (linux)
- Replies: 4
- Views: 1843
Re: Update with Raspberry PI. (linux)
I get this error: avrdude: stk500v2_ReceiveMessage(): timeout tried different things, but it did not help (I managed to use this method on earlier versions btw) This is the command I give: avrdude -v -p atmega2560 -c stk500 -P /dev/ttyUSB0 -b 115200 -D -U flash:w:/home/pi/rflink46/RFLink.ino.hex:i I ...
- Monday 13 March 2017 9:41
- Forum: Utility
- Topic: Energy, water and gas meter
- Replies: 6
- Views: 3501
Re: Energy, water and gas meter
I managed to create a triple analogue readout using mysensors.
You need:
- mysensors gateway (I used a nano)
- arduino mega (or 2 nano's)
- 3 apllicable sensors (depending on your meters)
See this thread on mysensors:
https://forum.mysensors.org/topic/5048/ ... e-counters
You need:
- mysensors gateway (I used a nano)
- arduino mega (or 2 nano's)
- 3 apllicable sensors (depending on your meters)
See this thread on mysensors:
https://forum.mysensors.org/topic/5048/ ... e-counters
- Thursday 09 March 2017 10:04
- Forum: Python
- Topic: Buienradar Weather Lookup Plugin
- Replies: 381
- Views: 88639
Re: Buienradar Weather Lookup Plugin
I got this error: 2017-03-09 09:54:20.583 (buienradar) Initialized version 1.1.0, author 'ffes' 2017-03-09 09:54:20.663 (buienradar) Devices created. 2017-03-09 09:54:20.663 Error: (buienradar) 'onStart' failed 'NameError':'name 'Settings' is not defined'. 2017-03-09 09:54:20.663 Error: (buienradar ...
- Wednesday 08 March 2017 13:34
- Forum: LUA
- Topic: Find My iPhone implementation in LUA script
- Replies: 273
- Views: 78602
Re: Find My iPhone implementation in LUA script
I switched off 2-way authentication and get this error: 2017-03-08 13:08:01.879 Error: EventSystem: in /home/pi/domoticz/scripts/lua/script_time_checkphones.lua: /home/pi/domoticz/scripts/lua/script_time_checkphones.lua:44: attempt to concatenate field '?' (a nil value) My line 44: table.insert ...
- Wednesday 08 March 2017 13:10
- Forum: LUA
- Topic: Find My iPhone implementation in LUA script
- Replies: 273
- Views: 78602
Re: Find My iPhone implementation in LUA script
I switched off 2-way authentication and get this error: 2017-03-08 13:08:01.879 Error: EventSystem: in /home/pi/domoticz/scripts/lua/script_time_checkphones.lua: /home/pi/domoticz/scripts/lua/script_time_checkphones.lua:44: attempt to concatenate field '?' (a nil value) My line 44: table.insert ...
- Wednesday 19 October 2016 13:49
- Forum: RFLink Transceiver
- Topic: How to update RFLink firmware
- Replies: 72
- Views: 55087
Re: How to update RFLink firmware
Is there a location where you could download the zip besides the google link? it seems impossible to download it from the CLI (I am on a distance, so easy plugging in a USB stick with the files is not an option).
- Thursday 15 September 2016 13:38
- Forum: Third party and supplementary tools
- Topic: OpenVPN on RaspberryPi
- Replies: 3
- Views: 3209
Re: OpenVPN on RaspberryPi
just google on "raspberry pi openvpn client configuration" You will find numerous examples on how to setup a client on raspbian
- Thursday 03 March 2016 13:18
- Forum: Utility
- Topic: watermeter wrong values
- Replies: 10
- Views: 3383
Re: watermeter wrong values
how do you push your data? and what data do you push?
You have to push the total value, and not push the increment.
You have to push the total value, and not push the increment.
- Monday 08 February 2016 10:44
- Forum: Others
- Topic: RFLink and nano together
- Replies: 3
- Views: 1408
Re: RFLink and nano together
Corrected code. Indexing is ok (tested it thoroughly ;) ) import time import serial import sys import urllib2 ser = serial.Serial( port='/dev/ttyUSB0', baudrate = 9600, parity=serial.PARITY_NONE, stopbits=serial.STOPBITS_ONE, bytesize=serial.EIGHTBITS, timeout=1 ) counter=0 humavg=0 tem1avg=0 ...
- Monday 08 February 2016 9:40
- Forum: Others
- Topic: RFLink and nano together
- Replies: 3
- Views: 1408
Re: RFLink and nano together

- Sunday 07 February 2016 12:47
- Forum: Others
- Topic: RFLink and nano together
- Replies: 3
- Views: 1408
RFLink and nano together
I am running domoticz on a RPi. Since yesterday I added a RFLink to it. I recently made also a arduino nano with 5 sensors on it which I read out serial and which values are pushed using json. Since I added the RFlink the system becomes unstable. Initially I thought it had something to do with the ...
- Thursday 28 January 2016 23:04
- Forum: Others
- Topic: airquality
- Replies: 13
- Views: 2701
Re: airquality
Anyway, I would appreciate if I could use some dummy parameter, so which one should I use?
- Thursday 28 January 2016 22:58
- Forum: Others
- Topic: airquality
- Replies: 13
- Views: 2701
Re: airquality
Hello, same issue here, to I converted to ppm/ppg and sent it to this ill named CO2. what are you using to mesure gases ? My page here: http://forum.mysensors.org/topic/147/air-quality-sensor I get my data from a public source on the internet. huh I am interrested by that source for I haven't found ...
- Thursday 28 January 2016 20:14
- Forum: Others
- Topic: airquality
- Replies: 13
- Views: 2701
Re: airquality
I get my data from a public source on the internet.epierre wrote:Hello,
same issue here, to I converted to ppm/ppg and sent it to this ill named CO2.
what are you using to mesure gases ? My page here: http://forum.mysensors.org/topic/147/air-quality-sensor
- Thursday 28 January 2016 20:13
- Forum: Others
- Topic: airquality
- Replies: 13
- Views: 2701
Re: airquality
Actually, I get all my parameters in μg/m3, last readings:
NO2 50
NO 9
O3 27
PM10 16
PM25 7
C6H6 1
C7H8 0
SO2 3
So if there is a unit conversion to ppb.... Please point me to it (but it has a relation with temperature and airpressure I guess).
NO2 50
NO 9
O3 27
PM10 16
PM25 7
C6H6 1
C7H8 0
SO2 3
So if there is a unit conversion to ppb.... Please point me to it (but it has a relation with temperature and airpressure I guess).
- Thursday 28 January 2016 10:48
- Forum: Others
- Topic: airquality
- Replies: 13
- Views: 2701
airquality
hi, I have my domoticz server up and running on a raspberry pi for a few days. Uptil now, I run a system which monitored several things, like gas, electricity and water use (selfmade monitoring system using a ADC and 3 sensors). I was able to add those to domoticz using dummy hardware and a counter ...