Search found 29 matches

by Teknor
Sunday 19 July 2020 21:35
Forum: Raspberry Pi GPIO ( WiringPi )
Topic: DHT22 sensor value's into Domoticz
Replies: 28
Views: 12849

Re: DHT22 sensor value's into Domoticz

* For compiling use : cd /root/scripts/gpio/ ; gcc -Wall -o dht dht.c -lwiringPi * For console use : /root/scripts/gpio/dht * For background use : /root/scripts/gpio/dht & Can you please elaborate on this section? Where can I store the script and how can I make it run in the background? (I am using ...
by Teknor
Friday 16 November 2018 19:11
Forum: Temperature and Weather
Topic: unable to share dummy devices (virtual device DHT22)
Replies: 8
Views: 3497

Re: unable to share dummy devices (virtual device DHT22)

Trying to share an DHT22 temp sensor, connected to a dummy switch. Does not seem to work, all other sensors are easily shared to my main Domoticz installation.

Does anybody know a workaround for this or how to solve the isse?
by Teknor
Tuesday 13 November 2018 15:56
Forum: Rfxcom Transceiver
Topic: Suddenly all sensors from the RFXtrx433 stopped working
Replies: 17
Views: 9902

Re: Suddenly all sensors from the RFXtrx433 stopped working

Looks like the solution was in Chapter 20. Sensors are now reporting back to Domoticz, but the weather station is not. Probably because the batttery powering the weather station has gone from weak to dead and not jamming with 433 messages anymore.
by Teknor
Monday 12 November 2018 19:23
Forum: Rfxcom Transceiver
Topic: Suddenly all sensors from the RFXtrx433 stopped working
Replies: 17
Views: 9902

Re: Suddenly all sensors from the RFXtrx433 stopped working

Thanks - will have a look at the chapter 20. Did not know there is a user guide... @b_weijenberg that could be a solution. More than 10 sensors stopped working at the same time Nov 9th, 0930. One sensor stopped working a few weeks before that. Will change all sensor batteries and see if this makes ...
by Teknor
Monday 12 November 2018 9:50
Forum: Rfxcom Transceiver
Topic: Suddenly all sensors from the RFXtrx433 stopped working
Replies: 17
Views: 9902

Re: Suddenly all sensors from the RFXtrx433 stopped working

waaren wrote: Monday 12 November 2018 0:48 shutdown an reboot are both symbolic links to /bin/systemctl
sudo shutdown -r and sudo reboot do exactly the same.
Thanks for clarification. Dont think that will take me any further.

What are people's experience with the RFXTRX433 when it comes to reliability over time?
by Teknor
Monday 12 November 2018 0:26
Forum: Rfxcom Transceiver
Topic: Suddenly all sensors from the RFXtrx433 stopped working
Replies: 17
Views: 9902

Re: Suddenly all sensors from the RFXtrx433 stopped working

Thanks for your reply.

Only tried sudo reboot.

What do the shutdown do? Will I be able to switch the RPI on again?
by Teknor
Sunday 11 November 2018 21:16
Forum: Rfxcom Transceiver
Topic: Suddenly all sensors from the RFXtrx433 stopped working
Replies: 17
Views: 9902

Suddenly all sensors from the RFXtrx433 stopped working

Suddenly all sensors from the RFXCOM / RFXtrx433e stopped working. Mostly temperature and humidity sensors. I don’t have access to the HW, as the installation is on my summer house. Is there a tool for troubleshooting, like RFXmanager for Linux? Running on Raspberry Pi 2 / Jessie. I dont think the p ...
by Teknor
Saturday 06 January 2018 20:19
Forum: Other questions and discussions
Topic: Pairing power plugs (EMW100)
Replies: 2
Views: 612

Re: Pairing power plugs (EMW100)

Dont think they are compatible with Rfxcom.
by Teknor
Wednesday 27 December 2017 23:40
Forum: Suggestions
Topic: Support for Google AIY Vision Kit: Make devices that see!
Replies: 0
Views: 2259

Support for Google AIY Vision Kit: Make devices that see!

Google is launching a very interesting product 31st December. It is a computer vision kit based on a Raspberry Pi Zero. Would be fantastic to have this integrated with Domoticz. - If a fox is detected, turn on sirene in Domoticz - If a child is detected, turn on Christmas lights in Domoticz - If I ...
by Teknor
Sunday 10 December 2017 14:38
Forum: Bash / PowerShell / Batch etc.
Topic: RPI script to verify internet connection
Replies: 4
Views: 4194

Re: RPI script to verify internet connection

Found a script I modified. Works like intended. #!/bin/ash FirstIP="8.8.8.8" #(Google public DNS) SecondIP="208.67.222.222" #(OpenDNS public DNS) IDX="208" DomoIP="192.168.1.103" DomoPort="8080" ping="ping -c 5 -w 3 -q "$FirstIP"" if $ping | grep -E "min/avg/max" > /dev/null then echo "First IP ...
by Teknor
Friday 08 December 2017 14:43
Forum: Bash / PowerShell / Batch etc.
Topic: RPI script to verify internet connection
Replies: 4
Views: 4194

RPI script to verify internet connection

Hi I have a RPI in my summerhouse (weather station, 10x temperature sensors, a few switches and Pikrellcam) for monitoring purposes. I use a stationary 4G router for internet connection. This connection is mostly stable, but occationally (a few times per year) there is need for a reboot of the 4G ...
by Teknor
Saturday 11 November 2017 22:23
Forum: Dashticz
Topic: Dashticz - Module - Crypto Currency [BETA]
Replies: 14
Views: 4920

Re: Dashticz - Module - Crypto Currency [BETA]

Cool,
From which beta?
by Teknor
Sunday 29 October 2017 21:44
Forum: Python
Topic: Python Plugin: Wan IP Checker
Replies: 175
Views: 36542

Re: Plugin - Wan IP Checker

When installing the plugin I get the following error and Domoticz will not start. Kind of strange that my GPIO export settings will make the script fail? All help is appreciated. Thanks. pi@raspberrypi:~/domoticz/plugins $ sudo service domoticz.sh status ● domoticz.service - LSB: Home Automation S ...
by Teknor
Sunday 10 September 2017 22:48
Forum: Bash / PowerShell / Batch etc.
Topic: Running script from a Domoticz switch
Replies: 9
Views: 15577

Re: Running script from a Domoticz switch

Solved!

Thanks all. Solution was to specify the whole path in the script

Before

Code: Select all

#!/bin/sh
echo "motion_enable on" >  ~/pikrellcam/www/FIFO
Now

Code: Select all

#!/bin/sh
echo "motion_enable on" > /home/pi/pikrellcam/www/FIFO
by Teknor
Sunday 10 September 2017 21:27
Forum: Bash / PowerShell / Batch etc.
Topic: Running script from a Domoticz switch
Replies: 9
Views: 15577

Re: Running script from a Domoticz switch

Changed the scripts to #!/bin/sh echo "motion_enable on" > ~/pikrellcam/www/FIFO ...still no luck... These work directly from the terminal, now the scripts also include "shebangs" pi@raspaux:~/domoticz/scripts $ ./pikrellOn.sh pi@raspaux:~/domoticz/scripts $ ./pikrellOff.sh
by Teknor
Sunday 10 September 2017 21:25
Forum: Bash / PowerShell / Batch etc.
Topic: Running script from a Domoticz switch
Replies: 9
Views: 15577

Re: Running script from a Domoticz switch

Changed the path to: script:///home/pi/domoticz/scripts/pikrellOn.sh script:///home/pi/domoticz/scripts/pikrellOff.sh From the Domo log: 2017-09-10 21:19:27.886 Executing script: /home/pi/domoticz/scripts/pikrellOff.sh 2017-09-10 21:19:27.897 Error: Error executing script command (/home/pi/domoticz ...
by Teknor
Sunday 10 September 2017 21:10
Forum: Bash / PowerShell / Batch etc.
Topic: Running script from a Domoticz switch
Replies: 9
Views: 15577

Re: Running script from a Domoticz switch

Thanks @jvdz for following up on this one. Yes, no luck with that either. These work fine: ~/domoticz/scripts $ ./pikrellOn.sh ~/domoticz/scripts $ ./pikrellOff.sh ..these do not work: On action: script:///pi/domoticz/scripts/pikrellOn.sh Off action: script:///pi/domoticz/scripts/pikrellOff.sh edit ...
by Teknor
Sunday 10 September 2017 20:58
Forum: Bash / PowerShell / Batch etc.
Topic: Running script from a Domoticz switch
Replies: 9
Views: 15577

Re: Running script from a Domoticz switch

Hi - yes did run sudo chmod +x for both files. I guess that's why I can run them with the command ./pikrellOn/Off.sh
by Teknor
Sunday 10 September 2017 20:25
Forum: Bash / PowerShell / Batch etc.
Topic: Running script from a Domoticz switch
Replies: 9
Views: 15577

Running script from a Domoticz switch

I have Pikrellcam installed on my Raspberry Pi 3 for motion detection purposes. I have created two scripts pikrellOn.sh and pikrellOff.sh in the folder pi/domoticz/scripts The pikrellOn.sh looks like this echo "motion_enable on" > ~/pikrellcam/www/FIFO and echo "motion_enable off" > ~/pikrellcam/www ...
by Teknor
Monday 14 August 2017 16:32
Forum: MySensors
Topic: Move MySensors nodes between controllers?
Replies: 0
Views: 1421

Move MySensors nodes between controllers?

Hi all. I have a Raspberry / Domoticz setup at home and one at my summer house. I have used the home set up as a test lab. When the MySensors nodes work as intended home I take them to the summer house since I don't have that much time for programming, soldering and trial and error during weekends ...