From 74b1db7030ae538c177a1db205849d2e30dc0b8b Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Sun, 22 May 2022 15:29:34 +0200 Subject: Initial commit, added documentation and basic python boilerplate for JDS6600 --- jds6600/JT-JDS6600-Communication-protocol.pdf | Bin 0 -> 227870 bytes jds6600/all-off.bin | 1 + jds6600/all-on.bin | 1 + jds6600/control.py | 8 ++++++++ jds6600/stty-config | 3 +++ 5 files changed, 13 insertions(+) create mode 100644 jds6600/JT-JDS6600-Communication-protocol.pdf create mode 100644 jds6600/all-off.bin create mode 100644 jds6600/all-on.bin create mode 100644 jds6600/control.py create mode 100755 jds6600/stty-config (limited to 'jds6600') diff --git a/jds6600/JT-JDS6600-Communication-protocol.pdf b/jds6600/JT-JDS6600-Communication-protocol.pdf new file mode 100644 index 0000000..f999813 Binary files /dev/null and b/jds6600/JT-JDS6600-Communication-protocol.pdf differ diff --git a/jds6600/all-off.bin b/jds6600/all-off.bin new file mode 100644 index 0000000..f04d91b --- /dev/null +++ b/jds6600/all-off.bin @@ -0,0 +1 @@ +:w20=0,0. diff --git a/jds6600/all-on.bin b/jds6600/all-on.bin new file mode 100644 index 0000000..55e9577 --- /dev/null +++ b/jds6600/all-on.bin @@ -0,0 +1 @@ +:w20=1,1. diff --git a/jds6600/control.py b/jds6600/control.py new file mode 100644 index 0000000..bf7b427 --- /dev/null +++ b/jds6600/control.py @@ -0,0 +1,8 @@ +class OpCode: + ONOFF = "w20" + +def sendCommand(opcode, args): + with open("/dev/ttyUSB0", "w") as tty: + print(f":{opcode}={args}.", end="\r\n", file=tty) + +sendCommand(OpCode.ONOFF, "1,0") diff --git a/jds6600/stty-config b/jds6600/stty-config new file mode 100755 index 0000000..4217c48 --- /dev/null +++ b/jds6600/stty-config @@ -0,0 +1,3 @@ +#!/usr/bin/zsh + +stty -F /dev/ttyUSB0 speed 115200 cs8 -cstopb -parenb -echo -- cgit v1.2.3