@mfalkvidd said:
Install the gateway:
git clone https://github.com/mysensors/Raspberry.git cd Raspberry/librf24-bcm make all && sudo make install cd .. make all && sudo make install sudo make enable-gwserial sudo /etc/init.d/PiGatewaySerial start
Verify that the gateway started properly:
cat /dev/ttyMySensorsGateway 0;0;3;0;14;Gateway startup complete.
Domoticz is unable to read from /dev/ttyMySensorsGateway so create a link to a name that Domoticz understands:
sudo ln -s /dev/ttyMySensorsGateway /dev/ttyUSB20
To automatically create the link on startup, add
ln -s /dev/ttyMySensorsGateway /dev/ttyUSB20
just before
exit0
in /etc/rc.local
I then added the gateway as per the image in my last post.
EDIT: Changed instructions to use librf24-bcm instead of tmrh20. tmrh20 tricked my Gateway into forwarding everything to a strange (non-existing) parent node.
I tried this for SPI through raspberry
Can someone provide me the correct way to install those ?
First attempt was like mentioned above. But i don't have the folder librf24-bcm
then i placed nrf2401 zip file into the folder from http://tmrh20.github.io/
Now i got this error
pi@testdom ~/Raspberry $ make all
g++ -c -o MyGateway.o MyGateway.cpp -Wall -Ofast -mfpu=vfp -lpthread -g -D__Raspberry_Pi -mfloat-abi=hard -mtune=arm1176jzf-s -D_TTY_NAME="/dev/ttyMySensorsGateway" -D_TTY_GROUPNAME="tty" -march=armv6zk -D__PI_BPLUS -I. -I/usr/local/include/RF24
In file included from RF24.h:18:0,
from MySensor.h:37,
from MyGateway.h:16,
from MyGateway.cpp:13:
RF24_config.h:38:32: fatal error: utility/includes.h: No such file or directory
#include "utility/includes.h"
^
compilation terminated.
Makefile:57: recipe for target 'MyGateway.o' failed
make: *** [MyGateway.o] Error 1
I have lateste update and upgrade and i'm using Jessie. Hopely can someone help me.
Thanks in advance.