Chat


How can I help you?

Entire circuit can be powered by a 9-Volt Battery: https://batteryindustry.tech/...

Entire circuit can be powered by a 9-Volt Battery:

9-volt-battery.jpg

https://batteryindustry.tech/wp-content/uploads/2020/03/9-volt-battery.jpg
5y
Someone is typing...
4
Potentiometer to control the speed (WPM)

WPM = Words per minute
5y
Potentiometer to control the speed (WPM)
5y
Someone is typing...
2
Morse Code Keyer in action: https://www.youtube.com/watch?v=98\_YLG0Roz4

Morse Code Keyer in action:
5y
Someone is typing...
7
This should connected to the KEY input of your radio. This will trigger the dit-...

This should connected to the KEY input of your radio. This will trigger the dit-dah and activates the PTT (push to transmit) of the radio.
5y
Someone is typing...
8
Arduino sketch code: #define P\_DOT 2 // Connects to the dot lever of the p...

There doesn't seem to be a way to copy code
5y
Arduino sketch code: #define P_DOT 2 // Connects to the dot lever of the paddle
int speed;
// Initializing the Arduino
void setup()
{
pinMode(P_DOT, INPUT);
pinMode(P_DASH, INPUT);
pinMode(P_AUDIO, OUTPUT);
pinMode(P_CW, OUTPUT);
digitalWrite(P_CW, LOW); // Start with key up
}
// Main routine
void loop()
{
speed = analogRead(P_SPEED)/2; // Read the keying speed from potmeter
if(!digitalRead(P_DOT)) // If the dot lever is presssed..
{
keyAndBeep(speed); // ... send a dot at the given speed
delay(speed); // and wait before sending next
}
if(!digitalRead(P_DASH)) // If the dash lever is pressed...
{
keyAndBeep(speed*3); // ... send a dash at the given speed
delay(speed); // and wait before sending next
}
}
// Key the transmitter and sound a beep
void keyAndBeep(int speed)
{
digitalWrite(P_CW, HIGH); // Key down
for (int i=0; i < (speed/2); i++) // Beep loop
{
digitalWrite(P_AUDIO, HIGH);
delay(1);
digitalWrite(P_AUDIO, LOW);
delay(1);
}
digitalWrite(P_CW, LOW); // Key up
}
5y
Someone is typing...
5
Breadboard Prototype by PA3HCM: https://www.pa3hcm.nl/wp-content/uploads/2014/12...

Breadboard Prototype by PA3HCM:

20141230_122158-1024x768.jpg

https://www.pa3hcm.nl/wp-content/uploads/2014/12/20141230_122158-1024x768.jpg
5y
Someone is typing...
6
Sample Iambic Paddle: https://static.dxengineering.com/global/images/prod/xlarge...

61VlMbTH4UL._SL1000_.jpg

https://images-na.ssl-images-amazon.com/images/I/61VlMbTH4UL._SL1000_.jpg
5y
Sample Iambic Paddle:

nzn-zn-9z-5-8-im_qg_xl.jpg

https://static.dxengineering.com/global/images/prod/xlarge/nzn-zn-9z-5-8-im_qg_xl.jpg
5y
Someone is typing...
1
GND7
GND3
GND1
SW1
GND6
GND5
GND4
GND2
+5V
+5V
+5V
R2
Resistance
10000 Ω
TRX KEY IN
R1
BT1
R4
Resistance
1000 Ω
R3
Resistance
10000 Ω
Q1
No files yet