├── README.md └── index.html /README.md: -------------------------------------------------------------------------------- 1 | Aprs Passcode Generator 2 | ======================= 3 | 4 | What? 5 | ----- 6 | This is a web-based tool to generate passcodes for the APRS-IS network. You can generate the code yourself so you do not have to wait for other people to give it to you. 7 | 8 | How it works 9 | ------------- 10 | You provide a callsign, the tool checks the validity of the callsign and generates the passcode to authenticate at the APRS Network. 11 | 12 | Demo 13 | -------- 14 | You can try the latest version here: https://aprs.do3sww.de 15 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | APRS Passcode Generator 5 | 6 | 7 | 8 | 9 | 46 | 47 | 68 | 69 | 70 | 71 | 72 |
73 |

APRS Passcode Generator

74 |

Enter your amateur radio callsign to get a Passcode for the APRS-IS network.

75 |
76 | 77 | 78 | 79 |

Your Passcode: {{ passcode }}

80 |
81 |

Source Code on Github

82 |
83 | 84 | 85 | --------------------------------------------------------------------------------