Welcome to the new FlexRadio Community! Please review the new Community Rules and other important new Community information on the Message Board.
Need the latest SmartSDR, Power Genius, Tuner Genius and Antenna Genius Software?
SmartSDR v3.8.19 and the SmartSDR v3.8.19 Release Notes | SmartSDR v2.12.1 and the SmartSDR v2.12.1 Release Notes
SmartSDR v1.12.1 and the SmartSDR v1.12.1 Release Notes
Power Genius XL Utility v3.8.8 and the Power Genius XL Release Notes v3.8.8
Tuner Genius XL Utility v1.2.11 and the Tuner Genius XL Release Notes v1.2.11
Antenna Genius Utility v4.1.8
SmartSDR v3.8.19 and the SmartSDR v3.8.19 Release Notes | SmartSDR v2.12.1 and the SmartSDR v2.12.1 Release Notes
SmartSDR v1.12.1 and the SmartSDR v1.12.1 Release Notes
Power Genius XL Utility v3.8.8 and the Power Genius XL Release Notes v3.8.8
Tuner Genius XL Utility v1.2.11 and the Tuner Genius XL Release Notes v1.2.11
Antenna Genius Utility v4.1.8
If you are having a problem, please refer to the product documentation or check the Help Center for known solutions.
Need technical support from FlexRadio? It's as simple as Creating a HelpDesk ticket.
Need technical support from FlexRadio? It's as simple as Creating a HelpDesk ticket.
v1.4 remote PTT switch
I really like having a PTT hand switch, and real quick this morning made one for v1.4 remote. It uses a tiny Arduino connected via USB to send MOX CAT commands. Initial testing works great. The only bad part is DDUTIL is required to link a physical comm port to SmartCat.
I just need to make a nice enclosure for it
Here is the simple sketch ;
//CAT USB PTT Switch - W4WHL
int buttonState = 0; // variable for reading the PTT status
int oldState = 0;
void setup() {
Serial.begin(9600);
pinMode(4, INPUT); // initialize the PTT pin as an input:
}
void loop() {
buttonState = digitalRead(4); // read the state of the PTT Switch:
if (buttonState != oldState) { // If state has changed, do something
if (buttonState == HIGH) { // If PTT pressed Send MOX on
// Turn on MOX
Serial.println("ZZRX1;");
oldState = buttonState;
}
else {
// turn MOX off:
Serial.println("ZZRX0;"); //If PTT released Send MOX off
oldState = buttonState;
}
}
}
W4WHL
I just need to make a nice enclosure for it
Here is the simple sketch ;
//CAT USB PTT Switch - W4WHL
int buttonState = 0; // variable for reading the PTT status
int oldState = 0;
void setup() {
Serial.begin(9600);
pinMode(4, INPUT); // initialize the PTT pin as an input:
}
void loop() {
buttonState = digitalRead(4); // read the state of the PTT Switch:
if (buttonState != oldState) { // If state has changed, do something
if (buttonState == HIGH) { // If PTT pressed Send MOX on
// Turn on MOX
Serial.println("ZZRX1;");
oldState = buttonState;
}
else {
// turn MOX off:
Serial.println("ZZRX0;"); //If PTT released Send MOX off
oldState = buttonState;
}
}
}
W4WHL
0
Comments
-
here is the completed functional USB PTT switch. My PTT switch jsut plugs into a 3.5mm jack built into the top of the pill bottle. Looks funny but Works perfect!
W4WHL
2 -
I think I saw this at my yearly Dr visit! Really this would be great for remote better than a flex knob0
Leave a Comment
Categories
- All Categories
- 289 Community Topics
- 2.1K New Ideas
- 536 The Flea Market
- 7.5K Software
- 6K SmartSDR for Windows
- 146 SmartSDR for Maestro and M models
- 360 SmartSDR for Mac
- 250 SmartSDR for iOS
- 231 SmartSDR CAT
- 172 DAX
- 353 SmartSDR API
- 8.8K Radios and Accessories
- 7K FLEX-6000 Signature Series
- 32 FLEX-8000 Signature Series
- 851 Maestro
- 44 FlexControl
- 847 FLEX Series (Legacy) Radios
- 799 Genius Products
- 417 Power Genius XL Amplifier
- 279 Tuner Genius XL
- 103 Antenna Genius
- 243 Shack Infrastructure
- 166 Networking
- 404 Remote Operation (SmartLink)
- 130 Contesting
- 632 Peripherals & Station Integration
- 125 Amateur Radio Interests
- 873 Third-Party Software