I am visually impaired and using a mouse is almost impossible. Instead, I use a software program – JAWS by Freedom Scientific – that reads the screen to me. I am considering purchasing an AVID CNC which uses the Centroid Acorn as its controller. I would like your feedback on the following questions:
1. How much of the Acorn functionality requires a mouse instead of keystrokes?
2. Can the Centroid pendant or the Centroid USB BOB be used to create keystrokes instead of clicking with a mouse.
3. Is there anyway to get the cursor into the input fields on the screen without using a mouse, e.g. tabbing?
4. Is anyone visually impaired and using the Acorn control system. If so, what do you use to make the system useable without a mouse?
5. If anyone has any thoughts and would like to discuss off-line, I would like to with you.
Visually Impaired And Using The Acorn Control System
Moderator: cnckeith
-
- Posts: 2
- Joined: Sun Mar 30, 2025 11:48 am
- Acorn CNC Controller: Yes
- Plasma CNC Controller: No
- AcornSix CNC Controller: Yes
- Allin1DC CNC Controller: No
- Hickory CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: none
- DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
Visually Impaired And Using The Acorn Control System
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Community Expert
- Posts: 3536
- Joined: Thu Sep 23, 2021 3:49 pm
- Acorn CNC Controller: Yes
- Allin1DC CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: 6433DB0446C1-08115074
- DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
- Location: Germany
Re: Visually Impaired And Using The Acorn Control System
With a touch monitor you must not use a mouse.
Uwe
Uwe
1 user liked this post
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
Re: Visually Impaired And Using The Acorn Control System
On the CNC12 side (blue background, left side of the screen) nearly everything is done with the keyboard.
On the Virtual Control Panel (VCP) (buttons on gray background, right side of screen) there are no keyboard equivalents, but a touch screen works well.
If you have minimal vision, and you do not need every last function that is on the default VCP, then you can customize the VCP to make the buttons that you do need twice as large.
On the Virtual Control Panel (VCP) (buttons on gray background, right side of screen) there are no keyboard equivalents, but a touch screen works well.
If you have minimal vision, and you do not need every last function that is on the default VCP, then you can customize the VCP to make the buttons that you do need twice as large.
1 user liked this post
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Posts: 71
- Joined: Wed Nov 22, 2017 10:10 pm
- Acorn CNC Controller: Yes
- Plasma CNC Controller: No
- AcornSix CNC Controller: No
- Allin1DC CNC Controller: No
- Hickory CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: 98F07B009BD3-0629237385
- DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
- Location: MD
Re: Visually Impaired And Using The Acorn Control System
Most VCP buttons are tied to keyboard shortcuts. A macro keyboard would accommodate setting up custom keys for various functions.cncsnw wrote: ↑Sun Mar 30, 2025 4:04 pm On the CNC12 side (blue background, left side of the screen) nearly everything is done with the keyboard.
On the Virtual Control Panel (VCP) (buttons on gray background, right side of screen) there are no keyboard equivalents, but a touch screen works well.
If you have minimal vision, and you do not need every last function that is on the default VCP, then you can customize the VCP to make the buttons that you do need twice as large.
I programed an adafruit feather RP2040 so that I could tie each VCP button I use to a physical button. its a script that runs on the board, so there are no startup sequences. I also have it working so that I can run an MPG with axis selector switch. The GPIO on the board can be programed to output any key combination. I could see doing something similar for any specific key combinations required to run the control in a visual impaired state.
1 user liked this post
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Posts: 2
- Joined: Sun Mar 30, 2025 11:48 am
- Acorn CNC Controller: Yes
- Plasma CNC Controller: No
- AcornSix CNC Controller: Yes
- Allin1DC CNC Controller: No
- Hickory CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: none
- DC3IOB: No
- CNC12: Yes
- CNC11: No
- CPU10 or CPU7: No
Re: Visually Impaired And Using The Acorn Control System
I looked up the adafruit feather RP2040 and it looks like I can purchase one for under $50. Does it take any additional equipment to program it, or is the programming all done from the Adafruit keyboard?
(Note: Liking will "up vote" a post in the search results helping others find good information faster)
-
- Posts: 786
- Joined: Thu Apr 14, 2022 2:46 pm
- Acorn CNC Controller: No
- Allin1DC CNC Controller: No
- Oak CNC controller: No
- CNC Control System Serial Number: none
- DC3IOB: No
- CNC12: No
- CNC11: No
- CPU10 or CPU7: No
Re: Visually Impaired And Using The Acorn Control System
Only equipment required to program a typical RP2040 device is a USB Type-C cable to connect to it, a finger to press the BOOTSEL button, and a PC to develop and compile the firmware. The RP2040 can use something called "UF2 programming" where it presents to the host PC as a flash drive. You transfer the UF2 file to that drive and it starts executing the code.
I'm most familiar with using C with or without the Arduino IDE but the process for programming this Feather RP2040 is going to be:
1. Write the code
2. Compile the code
3. Hold the BOOTSEL button and plug the Feather into the PC using the USB Type-C cable
4. Open the file browser and copy the compiled UF2 file to the RP2040 drive
I'm most familiar with using C with or without the Arduino IDE but the process for programming this Feather RP2040 is going to be:
1. Write the code
2. Compile the code
3. Hold the BOOTSEL button and plug the Feather into the PC using the USB Type-C cable
4. Open the file browser and copy the compiled UF2 file to the RP2040 drive
(Note: Liking will "up vote" a post in the search results helping others find good information faster)