Skip to content

Instantly share code, notes, and snippets.

@tdeck
Last active January 24, 2025 03:27
Show Gist options
  • Save tdeck/fad5db3ac4ed7873fb2a0e0ea799c9e2 to your computer and use it in GitHub Desktop.
Save tdeck/fad5db3ac4ed7873fb2a0e0ea799c9e2 to your computer and use it in GitHub Desktop.
Bash script to allow you to reliably emboss on a Mountbatten Brailler using a USB serial adapter from Linux
#! /bin/bash
# Mountbatten Embosser Control
PORT_DEVICE=/dev/ttyUSB0
# Copyright 2025 Troy Deck (blindmakers.net)
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
sudo stty raw -F "$PORT_DEVICE" 9600 cs8 -cstopb -parenb crtscts
# "Wake up" the Mountbatten
printf '\x00' > "$PORT_DEVICE"
sleep 1
printf '\x00' > "$PORT_DEVICE"
sleep 1
# Choose a command to convert newlines (rarely what you want) to CRLF
translate_cmd=cat # fallback if we don't have a translate command installed
if [ -x "$(command -v unix2dos)" ]; then
translate_cmd=unix2dos
elif [ -x "$(command -v todos)" ]; then
translate_cmd=todos
fi
cat "${1:--}" | $translate_cmd > /dev/ttyUSB0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment