changed to not

fm-rx
Alan Johnston 2 years ago committed by GitHub
parent 98f5d40e84
commit 06bb89da4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -381,7 +381,7 @@ if __name__ == "__main__":
sleep(0.5)
if GPIO.input(squelch) == False:
print("carrier received!")
command_tx = ~command_tx
command_tx = not command_tx
print(command_tx)
output(txLed, txLedOn)
sleep(4.0)
@ -397,7 +397,7 @@ if __name__ == "__main__":
sleep(0.5)
if GPIO.input(squelch) == False:
print("carrier received!")
command_tx = ~command_tx
command_tx = not command_tx
print(command_tx)
output(txLed, txLedOn)
sleep(4.0)

Loading…
Cancel
Save

Powered by TurnKey Linux.