another small change, to display correctly on Github

This commit is contained in:
Alexander Richter 2023-10-05 15:22:49 +02:00
parent 6c1a40c442
commit 5d6f996fae

View File

@ -38,7 +38,8 @@ It also supports Digital LEDs such as WS2812 or PL9823. This way you can have as
Planned Features: Planned Features:
- Temperature Probes using 4.7k Pullup-Resistor - Temperature Probes using 4.7k Pullup-Resistor
- - Support for i2C LCDs
# Compatiblity # Compatiblity
This software works with LinuxCNC 2.8, 2.9 and 2.10. For 2.8 however you have to change #!/usr/bin/python3.9 in the first line of arduino.py to #!/usr/bin/python2.7. This software works with LinuxCNC 2.8, 2.9 and 2.10. For 2.8 however you have to change #!/usr/bin/python3.9 in the first line of arduino.py to #!/usr/bin/python2.7.
@ -91,7 +92,7 @@ You can now use arduino pins in your hal file.
Pin Names are named arduino.[Pin Type]-[Pin Number]. Example: Pin Names are named arduino.[Pin Type]-[Pin Number]. Example:
arduino.digital-in-32 for Pin 32 on an Arduino Mega2560 arduino.digital-in-32 for Pin 32 on an Arduino Mega2560
Watch the Video explanation on Youtube: Watch the Video explanation on Youtube:
[![IMAGE ALT TEXT](https://img.youtube.com/vi/bjKfnLbsvgA/0.jpg)](https://www.youtube.com/watch?v=bjKfnLbsvgA "How to set up and test arduino-connector with LinuxCNC") [![IMAGE ALT TEXT](https://img.youtube.com/vi/bjKfnLbsvgA/0.jpg)](https://www.youtube.com/watch?v=bjKfnLbsvgA "How to set up and test arduino-connector with LinuxCNC")
@ -149,7 +150,7 @@ Depending on the used LED Chipset, Color sequence can vary. Please try, which va
Typically it should be R G B for WS2812 and G R B for PL9823. Typically it should be R G B for WS2812 and G R B for PL9823.
You can mix both in one chain, just modify the color values accordingly. You can mix both in one chain, just modify the color values accordingly.
Watch the Video explanation on Youtube: Watch the Video explanation on Youtube:
[![IMAGE ALT TEXT](https://img.youtube.com/vi/L_FBEtP9il0/0.jpg)](https://www.youtube.com/watch?v=L_FBEtP9il0 "using digital RGB LEDs with LinuxCNC") [![IMAGE ALT TEXT](https://img.youtube.com/vi/L_FBEtP9il0/0.jpg)](https://www.youtube.com/watch?v=L_FBEtP9il0 "using digital RGB LEDs with LinuxCNC")
@ -237,7 +238,7 @@ Low Performance: Both signals connect to non-interrupt pins, details below.
|Arduino Mega |2, 3, 18, 19, 20, 21 |13 | |Arduino Mega |2, 3, 18, 19, 20, 21 |13 |
|Sanguino |2, 10, 11 |0 | |Sanguino |2, 10, 11 |0 |
Watch the Video explanation on Youtube: Watch the Video explanation on Youtube:
[![IMAGE ALT TEXT](https://img.youtube.com/vi/hgKXgRvjwPg/0.jpg)](https://youtu.be/hgKXgRvjwPg "How to connect Rotary Encoders and Joysticks for MPG to LinuxCNC using Arduino") [![IMAGE ALT TEXT](https://img.youtube.com/vi/hgKXgRvjwPg/0.jpg)](https://youtu.be/hgKXgRvjwPg "How to connect Rotary Encoders and Joysticks for MPG to LinuxCNC using Arduino")
# Joysticks # Joysticks
@ -246,7 +247,8 @@ Connect your X and Y Pin of your Joystick to an Analog Pin of your choice.
Depending of the position of the Joystick it will add or substract from a counter, which then is send to LinuxCNC. The more you move the Joystick from the middle Position to the end of movement the more will be added to the counter, which will increase the speed of motion in Jog mode. Depending of the position of the Joystick it will add or substract from a counter, which then is send to LinuxCNC. The more you move the Joystick from the middle Position to the end of movement the more will be added to the counter, which will increase the speed of motion in Jog mode.
Currently Joysticks will only generate an counter in LinuxCNC. Currently Joysticks will only generate an counter in LinuxCNC.
Watch the Video explanation on Youtube:
Watch the Video explanation on Youtube:
[![IMAGE ALT TEXT](https://img.youtube.com/vi/hgKXgRvjwPg/0.jpg)](https://youtu.be/hgKXgRvjwPg?si=fK5umqKZm-i0UVMP&t=780 "How to connect Rotary Encoders and Joysticks to LinuxCNC using Arduino") [![IMAGE ALT TEXT](https://img.youtube.com/vi/hgKXgRvjwPg/0.jpg)](https://youtu.be/hgKXgRvjwPg?si=fK5umqKZm-i0UVMP&t=780 "How to connect Rotary Encoders and Joysticks to LinuxCNC using Arduino")
# Serial communication over USB # Serial communication over USB