From 841a336b28c414efbcfd05375094f7862e133091 Mon Sep 17 00:00:00 2001 From: Alexander Richter Date: Sun, 23 Jul 2023 18:46:50 +0200 Subject: [PATCH] renamed Arduino.py to omit crashes with Arduino IDE --- README.md | 2 ++ arduino.py => arduino-connector.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) rename arduino.py => arduino-connector.py (99%) mode change 100755 => 100644 diff --git a/README.md b/README.md index aa277f4..f02e22c 100644 --- a/README.md +++ b/README.md @@ -185,7 +185,9 @@ If your Encoder can be pressed and there is a button inside, use the Input or La Encoders have 2 signals, which must be connected to 2 pins. There are three options. Best Performance: Both signals connect to interrupt pins. + Good Performance: First signal connects to an interrupt pin, second to a non-interrupt pin. + Low Performance: Both signals connect to non-interrupt pins, details below. | Board | Interrupt Pins |LED Pin(do not use) | diff --git a/arduino.py b/arduino-connector.py old mode 100755 new mode 100644 similarity index 99% rename from arduino.py rename to arduino-connector.py index 49f6c2a..e8f3a6c --- a/arduino.py +++ b/arduino-connector.py @@ -11,7 +11,7 @@ import serial, time, hal # You can also generate "virtual Pins" by using latching Potentiometers, which are connected to one analog Pin, but are read in Hal as individual Pins. # Currently the Software provides: -# - analog Inputs +# - analog Inputss # - latching Potentiometers # - 1 binary encoded Selector Switch # - digital Inputs