Always More to Learn! Always More to Do and Share!
The Home Page of Amateur Radio Operator W1AN

These examples run on Raspberry Pi

The following examples will allow you to output FSK audio for your terminal unit and teletype gear.
You need minimodem and mpg123 installed on your Raspberry Pi.
Change paths and file names for your file system. 

**For ITTY USA**
#/! bin/bash
# Start-ITTY-US.sh
sleep 2
mpg123 http://internet-tty.net:8000/ITTY

**For ITTY EU**
#/! bin/bash
# Start-ITTY-EU.sh
sleep 2
mpg123 http://internet-tty.net:8040/EUROPE

**For Printing 850 shift News from N3CRK**
#/! bin/bash
# Start-News-850.sh
sleep 2
printf "*******1575******** NEWS-850 *******2425****** \n" 
mpg123 http://n3crk.ddns.net:8000/850 

**For Printing Pix at 60wpm for 170 or 850 shift**
#/! bin/bash
# Art11.sh 
printf "***********Art 11 Wyoming Cowboy*********** \n"
sleep 2
cat /home/w1an/Pictures/WyomingCowboy_W7RPV.pix | minimodem --tx -a -M 2125 -S 2295 rtty
# cat /home/w1an/Pictures/WyomingCowboy_W7RPV.pix | minimodem --tx -a -M 1575 -S 2425 rtty

**For Printing a Baudot formatted Text File at 60wpm for 170 or 850 shift**
#/! bin/bash
# battleshipnj.sh
printf "***********Battleship NJ History*********** \n"
sleep 2
# cat /home/w1an/output/battleshipnj.txt | minimodem --tx -a -M 1575 -S 2425 rtty
cat /home/w1an/output/battleshipnj.txt | minimodem --tx -a -M 2125 -S 2295 rtty