Giter Site home page Giter Site logo

serial-server's Introduction

Serial Communications Network Proxy

This little RS-232 <-> TCP/IP proxy written in Java was developed by me to be able to pull data from a weater station (Davis Vantage Pro2) connected to the serial (RS-232) port on a Ubuntu Linux server. The service has been running 24x7x365 since 2008 and is still running, collecting data every 10 minutes.

Build

./gradlew

Prerequisites for running serialserver on Ubuntu

librxtxSerial.so from RXTX lib is required.

sudo apt-get install librxtx-java

Device permissions.

Make sure the user has rw permissions on the device.

$ ls -l /dev/ttyS0
crw-rw---- 1 root dialout 4, 64 2011-03-05 19:40 /dev/ttyS0

sudo adduser <username> dialout

Serial Server start script (serialserver.sh)

#!/bin/bash
#
SERIAL_HOME=$HOME
SERIAL_PORT=/dev/ttyS0
SERIAL_BAUD=9600
SERIAL_TCP=8888

cd $SERIAL_HOME

stty -F $SERIAL_PORT $SERIAL_BAUD sane clocal crtscts -hupcl -icrnl -opost -onlcr

java -classpath $SERIAL_HOME/serialserver-1.1.jar:$SERIAL_HOME/RXTXcomm.jar se.technipelago.serial.SerialServer $SERIAL_PORT 2000 $SERIAL_TCP

Start the serial server

serialserver.sh

Test communicating with the server

telnet localhost 8888
at
OK
kill
Connection closed by foreign host.

serial-server's People

Contributors

goeh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.