LAN rfxcom transceiver
Moderator: b_weijenberg
LAN rfxcom transceiver
My old rfxcom lan receiver is broken and needs to be replaced. Are Their plans to release a lan receiver because now the 433e has only a USB connection .
- b_weijenberg
- Forum Moderator
- Posts: 1746
- Joined: Sun May 14, 2006 4:32 pm
- Location: Netherlands
Re: LAN rfxcom transceiver
The RFXtrx433E can easily be transformed to a LAN version.
Use a RaspberryPI and install ser2net.
Use a RaspberryPI and install ser2net.
Code: Select all
Disable Serial Console
======================
sudo nano /etc/inittab
insert a # sign in front of this line:
T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100
ctrl-O
Enter
ctrl-x
Remove console
==============
sudo nano /boot/cmdline.txt
delete these 2 fields: console=ttyAMA0,115200 kgdboc=ttyAMA0,115200
ctrl-O
Enter
ctrl-x
Add ser2net
===========
sudo apt-get install ser2net
sudo nano /etc/ser2net.conf
10001:raw:0:/dev/ttyUSB0:38400 8DATABITS NONE 1STOPBIT
10002:raw:0:/dev/ttyUSB1:38400 8DATABITS NONE 1STOPBIT
sudo /etc/init.d/ser2net restart
Autostart ser2net
=================
sudo nano /etc/rc.local
add the next line before exit o :
/usr/local/sbin/ser2net -n
Re: LAN rfxcom transceiver
Thnx and is there an easy way with the windows 10 iot setup?