W2YMM Scripts Page


Note, I did not write any of these scripts.
(Some were modified by me)
Use them at your own discretion.
But, These are running on my system.

I put this page together for myself, just in case
the original scripts get lost somewhere.
I can access them from my server.

Maybe you can use them too.
Have Fun.



Provides an audible confirmation of a received DTMF command.
Sends your link status to your Twitter Account
Read me file for irlp-tweet


Send CW ID using sccw or .wav file. This version of the ID program uses an improved algorithm for generating the IDs. IDs will be sent in manner very similar to those done by modern repeater controllers.


JUL-16-2005: this version will also work with ALL versions of IRLP boards. There is a variable in the in the ID program where you tell it if you are using a Ver 3 or not board. NOTE: When in non-Ver 3 mode, the ID take precedence over voice communications.
Randomly dial a node.
sccw_1.1b - Use sound card synthesizer to generate CW


1.Copy this tarball to your /home/irlp directory
2.Install it: tar -zxvf sccw_1.1b.tgz
3.Follow the README


OK: RH9 and FC3
Speak the time of day.
Speak/Call last call waiting, incoming, outgoing calls.
tone_0.3 - Dual tone generator using sound card synthesizer


1.Copy this tarball to your /home/irlp directory
2.Install it: tar -zxvf tone_0.3.tgz
3.Follow the README


OK: RH9 and FC3
Used to Enable/Disable the activity timeout timer and report the status of this setting.
Turn on and off script for ctone
An improved ID program for use with IRLP/EchoIRLP nodes.
AUX1 tied to PTT
A sample of my custom_decode file
Places the commonly used functions into one place where it is easy to get to.
This script gives you the ability to query your IRLP node's uptime from your DTMF keypad. (From KK7AV)
Info File about the script
This is a script that will play the ID message over the simplex node while in use.
Report the status of your node via APRS

INSTALLATION
============
1. Login is as root.

2. Get the tar file:


3. Install the files found in the tar file:

   cd /
   tar -xzvf /root/aprs_status-4.0.tgz

   This will un-zip the files and place them in the appropriate
   directories.

4. Read the README_aprs file in /home/irlp/custom directory for the rest of the instructions.

Readme for the aprs_status script (Old)
Custom script to replay the connected nodes id
Modified to work with EchoIRLP
Scripts for remote enable and disable of DTMF commands
Readme File
This script will download the latest version 'thebridge-0.85.tgz' 
from the w2ymm website and delete the existing EchoIRLP tbd version
Read me file
These are some of the scripts that I am running on my node.
Most are from Randy KC6HUR.  Others are from the Yahoo
IRLP and EchoIRLP groups.

A lot of scripts have been borrowed from other people.
If you use them please give credit where credit is do.

Thanks to all the guys who have written these scripts...

Randy KC6HUR

Rob's Site KK7AV

Brent's Site K6IB

W0ANM
Borrowed form N5BBD
Here is a No Time Out code to put into the custom_decode section.
As is, If you enter the dtmf key C plus the node or reflector number, there will
be no activity time out.
# Place the folowing in your custom_decode to allow a notimeout connect

# IRLP No Timeout Script - This will allow you to connect to a Node or
# Reflector without timing out
#
NTOPFX="C"                # notimeout prefix
NODENO=${1#${NTOPFX}}     # extract node number
PFX=${1%${NODENO}}        # extract prefix digit
if [ "$PFX" == "$NTOPFX" ] && [ "${#NODENO}" -eq 4 ] ; then
  if [ "$NODENO" -lt 9000 ] ; then
   call stn${NODENO} notimeout
  else
   connect_to_reflector ref${NODENO} notimeout
  fi
  exit 1
fi
#
# End of No Timeout Script
#