Page 1 of 1
Refreshable Braille Display
Posted: Fri Feb 06, 2026 4:31 pm
by Mbaling_T
I am writing to ask if it is possible to incorporate different language alphabets, specifically Spanish and French, into the Arduino code of the project. Additionally, I would like to know if these characters can be integrated seamlessly for use with the braille display and how to switch between the different letters using the solenoids.
Moderator note:
https://www.sciencebuddies.org/science- ... le-display
Re: Refreshable Braille Display
Posted: Sun Feb 08, 2026 2:19 pm
by calixte
Hi!
Yes, it is possible to include Spanish and French characters in this Arduino braille project, but it requires adding extra programming because those languages use accented letters that are not part of basic English braille. In braille, many accented letters are made using special prefix patterns combined with regular letters, so you would need to create a custom table in the code that matches each character (like é, ñ, or ç) to the correct dot pattern. The Arduino itself can handle these characters if they are properly defined in the program, but they will not work automatically. To switch between languages, you can add a mode or setting in the code (for example, using a button or variable) that tells the program which alphabet to use, and then the solenoids will activate according to the selected mapping. The main things to check are that your character-to-braille patterns are correct, your code supports accented characters, and your switching method is clearly programmed so the display knows which language system to follow.