Support for Telegraph Sounder #61
Replies: 1 comment 1 reply
-
Moses was asking about hooking a telegraph sounder up to the vail adapter. The adapter already plays tones for received signals, so it would just be a matter of hooking into that code to send a signal out to your sounder relay. For this, you are going to first need a Vail adapter. Right now, you can get either a Seeeduino XIAO, or an Adafruit QT Py. The Adafruit is a little easier to work with (it has a reset button instead of requiring you to connect two pads with a wire) and is slightly cheaper right now in the US, but either one is fine. Your circuit is going to look a lot like this one from a lastminuteengineers.com tutorial: For the first step, I think it would make sense to write a program that just opens and closes the relay every second. Here's something that should work: #define RELAY_PIN 6
void setup() {
pinMode(RELAY_PIN, OUPUT);
}
void loop() {
digitalWrite(RELAY_PIN, HIGH);
delay(500);
digitalWrite(RELAY_PIN, LOW);
delay(500);
} You should be able to flash this to your microcontroller with the Arduino IDE, but if you're not up for that, let me know, and I will build a firmware for you that you can flash with your file manager just like flashing the Vail adapter firmware. That's a lot of information, I know. Please feel encouraged to reach out in this thread for any clarifying questions you have along the way to building the auto-clicker circuit I just described! Your questions will help other people who want to do something similar! |
Beta Was this translation helpful? Give feedback.
-
This thread is for the purpose of Telegraph sounder implementation to home-brewed Vail adapters.
Beta Was this translation helpful? Give feedback.
All reactions