small Readme changes
This commit is contained in:
parent
a1875bfd15
commit
6df5dba5e2
15
README.md
15
README.md
@ -4,7 +4,12 @@
|
||||
<img src="/ArduinoChip.svg" width="250" align="right">
|
||||
|
||||
By Alexander Richter, info@theartoftinkering.com 2022
|
||||
please consider supporting me on Patreon: https://www.patreon.com/theartoftinkering
|
||||
please consider supporting me on Patreon:
|
||||
https://www.patreon.com/theartoftinkering
|
||||
|
||||
Website: https://theartoftinkering.com
|
||||
Youtube: https://youtube.com/@theartoftinkering
|
||||
|
||||
|
||||
This Projekt enables you to connect an Arduino to LinuxCNC and provides as many IO's as you could ever wish for.
|
||||
This Software is used as IO Expansion for LinuxCNC.
|
||||
@ -29,6 +34,8 @@ Currently the Software Supports:
|
||||
|
||||
TODO
|
||||
- Matrix Keyboard Support
|
||||
- Rotary Encoder Input
|
||||
|
||||
|
||||
Should this be supported?
|
||||
- RC Servo Support
|
||||
@ -94,7 +101,7 @@ LED colors are set with values 0-255 for Red, Green and Blue. 0 beeing off and 2
|
||||
Here are two examples:
|
||||
|
||||
1. This LED should be glowing Red when "on" and just turn off when "off".
|
||||
The Setting in Arduino is:
|
||||
The Setting in Arduino is:
|
||||
```int DledOnColors[DLEDcount][3] = {{255,0,0}};```
|
||||
|
||||
```int DledOffColors[DLEDcount][3] = {{0,0,0}};```
|
||||
@ -104,7 +111,9 @@ The Setting in Arduino is:
|
||||
```int DledOnColors[DLEDcount][3] = {{0,255,0}};```
|
||||
|
||||
```int DledOffColors[DLEDcount][3] = {{255,0,0}};```
|
||||
Easy right?
|
||||
|
||||
|
||||
|
||||
# Latching Potentiometers / Selector Switches
|
||||
This is a special Feature for rotary Selector Switches. Instead of loosing one Pin per Selection you can turn your Switch in a Potentiometer by soldering 10K resistors between the Pins and connecting the Selector Pin to an Analog Input.
|
||||
The Software will divide the Measured Value and create Hal Pins from it. This way you can have Selector Switches with many positions while only needing one Pin for it.
|
||||
|
Loading…
Reference in New Issue
Block a user