Skip to content

Commit

Permalink
v1.89
Browse files Browse the repository at this point in the history
  • Loading branch information
chilipeppr committed Mar 21, 2016
1 parent 2f0d641 commit 227a7dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
serial-port-json-server
=======================
Version 1.88
Version 1.89

A serial port JSON websocket & web server that runs from the command line on Windows, Mac, Linux, Raspberry Pi, or Beagle Bone that lets you communicate with your serial port from a web application. This enables web apps to be written that can communicate with your local serial device such as an Arduino, CNC controller, or any device that communicates over the serial port. Since version 1.82 you can now also program your Arduino by uploading a hex file.

Expand Down Expand Up @@ -363,6 +363,8 @@ sudo service serial-port-json-server start

Revisions
-------
Changes in 1.89
- Nodemcu buffer fix so it doesn't stall
Changes in 1.88
- Added cayenn.go which is the new protocol for ChiliPeppr's Cayenn IoT communication socket service so IoT devices can send announce messages about their presence and SPJS will connect back to them to allow them to broadcast out commands to all connected SPJS websockets as well as have sockets message back to the IoT devices.
- Added cayenn-sendudp command to overall command list so clients like ChiliPeppr or other connected websocket clients can send back to devices over UDP to enable IoT communications.
Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Version 1.88
// Version 1.89
// Supports Windows, Linux, Mac, and Raspberry Pi, Beagle Bone Black

package main
Expand All @@ -22,8 +22,8 @@ import (
)

var (
version = "1.88"
versionFloat = float32(1.88)
version = "1.89"
versionFloat = float32(1.89)
addr = flag.String("addr", ":8989", "http service address")
//assets = flag.String("assets", defaultAssetPath(), "path to assets")
//verbose = flag.Bool("v", true, "show debug logging")
Expand Down

0 comments on commit 227a7dd

Please sign in to comment.