How to test Razberry

Discussions about RaZberry - Z-Wave board for Raspberry computer
Post Reply
deennoo
Posts: 1
Joined: 15 Mar 2016 00:25

How to test Razberry

Post by deennoo »

Hello,

Just got a razberry from here :

http://www.amazon.fr/Z-Wave-Me-ZMEERAZ- ... WRZWV0RAE9

Don't know if this is a real or a clone...

Running a RPI b+

Plug Razberry on Gpio, plug Power both led green and red light for 1 seconde (maybe a littel bit more i didn't take my chrono), run Official SD Card image, but nothing appear on firmwire section.

I try it with openzwave + Domoticz same thing happen.

Is there a simple way to check if Razberry is on good condition ?
nochkin
Posts: 38
Joined: 29 Feb 2016 05:05

Re: How to test Razberry

Post by nochkin »

According to your link, it's being sold by Z-Wave.me, so it should be real.

That's the simplest way to test it from the shell. Replace "/dev/ttyAMA0" with your device if it's different. You need to do it as root (prepend "sudo" for each command, or switch to root before running them):
1. Kill z-way-server:

Code: Select all

killall z-way-server
2. Listen for responses from the module:

Code: Select all

cat < /dev/ttyAMA0 &
3. Send command to the module:

Code: Select all

echo -en "\x01\x03\x00\x15\xe9" > /dev/ttyAMA0
4. You can then kill the "cat" command from step #2 or reboot the server to get z-way-server back.

You should get some stuff in response. It should contain something like "Z-Wave 3.99" in the middle (could be more than once).
If you got it, the module communicates properly.
Post Reply