RS485 | Node Network

Sensor-NetworkI’m a huge fan of Arduino, JeeNode, ESP8266. A few of them connected in a network is one of the best solutions to distribute sensors data, relays command and status, LCDs and so on. But what should we use for networking the nodes? Wifi is built into the ESP8266 so that’s a no-brainer. JeeNode has an RF12b working on 868Mhz, but what if you don’t want to use wireless? What if you want to use wired sensors and supply power to them over the same wire? I have looked at RS232 and Ethernet. RS232 is low cost but in its standard form best suited for point to point connections. Ethernet is much better, Ethernet Cards and libraries are easily available for the Arduino. Cost wise, it’s not the best solution, though.

Continue reading “RS485 | Node Network”

RS485 | Soladin 600

soladin600A few years back I bought a small PV Solar system. Only 3 230Wp panels and a Soladin 600 inverter. I installed the system myself on the shed using Ubbink Consoles. These consoles are really nice. They are lightweight, so easy to get to the roof and rock solid once weighed down with some 30x30cm concrete tiles.

soladin-schemaThe Soladin 600 has a serial port available but it is in an RJ12 form package. Interfacing is super easy thanks to the Soladin Arduino library. Just add two resistors and the hardware side is sorted.

I had a JeeNode lying around and with the addition of an MX485 IC, the connection to the RS485 bus was also sorted. A few lines of code later and the PV data from the Soladin Inverter was transmitting on a 10-second interval on the RS485 bus.

Continue reading “RS485 | Soladin 600”

LocoNet | Arduino Interface

Since I don’t really have space for a model rail layout, I tend to mess about with small model rail related projects. One of the aspects about model rail I genuinely enjoy is the automation side. Interfacing the physical with the digital world is a heck of a lot of fun. Using European Uhlenbrock equipment goes hand in hand with LocoNet.

Loconet is part of a DCC train control system designed by Digitrax to control a model train layout. LocoNet is a Peer to Peer Local Area Network (LAN) designed for very high traffic capacity and free-form wiring as well as future system expandability and ease of upgrade. It is a separate circuit from the track power used to run model trains.
Digitrax developed LocoNet to handle the communications between throttles, stationary decoders, and other devices that need to communicate with the command station.

Continue reading “LocoNet | Arduino Interface”