From 0d77f15de5e8c442dab426c2d7a19b2a70fb8d75 Mon Sep 17 00:00:00 2001 From: BodgeMaster <> Date: Tue, 4 May 2021 12:01:37 +0200 Subject: [PATCH] added descriptions for the Arduino sketches --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 0725160..17a042f 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,9 @@ Dependencies: Linux kernel, bash, sysfs filesystem mounted on /sys Can be used to get the state of a hardware sensor connected to the computer. Dependencies: lm-sensors, python3 + +### [manual_control](./manual_control/manual_control.ino) +Arduino sketch that allows direct manual control of the pins over the serial interface. This is the older, fancier version which is only capable of controlling outputs. It has some hardcoded values that may need to be adjusted. + +### [external_control](./external_control/external_control.ino) +A less fancy but generally improved rewritten version of the manual control Arduino sketch that is more feature-packed and better suited for interaction with programs while still being usable for humans.