blink green LED on command

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

@ -15,6 +15,7 @@ pd = 21
ptt = 20 ptt = 20
txc = 7 txc = 7
squelch = 6 squelch = 6
green = 26
# command_tx = True # command_tx = True
@ -24,6 +25,7 @@ GPIO.setup(13, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(12, GPIO.IN, pull_up_down=GPIO.PUD_UP) GPIO.setup(12, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(27, GPIO.IN, pull_up_down=GPIO.PUD_UP) GPIO.setup(27, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(7, GPIO.IN, pull_up_down=GPIO.PUD_UP) GPIO.setup(7, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.setup(green, GPIO.IN, INPUT)
GPIO.setup(squelch, GPIO.IN) GPIO.setup(squelch, GPIO.IN)
@ -202,9 +204,9 @@ if __name__ == "__main__":
command_tx = not command_tx command_tx = not command_tx
print(command_tx) print(command_tx)
output(txLed, txLedOn) output(green, txLedOff)
sleep(0.03) sleep(0.03)
output(txLed, txLedOff) output(green, txLedOn)
if (command_tx == True): if (command_tx == True):
print("Turning on transmit") print("Turning on transmit")
@ -335,9 +337,9 @@ if __name__ == "__main__":
command_tx = not command_tx command_tx = not command_tx
print(command_tx) print(command_tx)
output(txLed, txLedOn) output(green, txLedOff)
sleep(0.03) sleep(0.03)
output(txLed, txLedOff) output(green, txLedOn)
if (command_tx == True): if (command_tx == True):
print("Turning on transmit") print("Turning on transmit")
@ -445,18 +447,18 @@ if __name__ == "__main__":
while 1: while 1:
output(txLed, txLedOff) output(txLed, txLedOff)
sleep(0.5) sleep(0.5)
if (command_tx == False): # if (command_tx == False):
output(txLed, txLedOn) # output(txLed, txLedOn)
sleep(0.03) # sleep(0.03)
output(txLed, txLedOff) # output(txLed, txLedOff)
if GPIO.input(squelch) == False: if GPIO.input(squelch) == False:
print("carrier received!") print("carrier received!")
command_tx = not command_tx command_tx = not command_tx
print(command_tx) print(command_tx)
output(txLed, txLedOn) output(green, txLedOff)
sleep(0.03) sleep(0.03)
output(txLed, txLedOff) output(green, txLedOn)
if (command_tx == True): if (command_tx == True):
print("Turning on transmit") print("Turning on transmit")
@ -482,18 +484,18 @@ if __name__ == "__main__":
while 1: while 1:
output(txLed, txLedOff) output(txLed, txLedOff)
sleep(0.5) sleep(0.5)
if (command_tx == False): # if (command_tx == False):
output(txLed, txLedOn) # output(txLed, txLedOn)
sleep(0.03) # sleep(0.03)
output(txLed, txLedOff) # output(txLed, txLedOff)
if GPIO.input(squelch) == False: if GPIO.input(squelch) == False:
print("carrier received!") print("carrier received!")
command_tx = not command_tx command_tx = not command_tx
print(command_tx) print(command_tx)
output(txLed, txLedOn) output(green, txLedOff)
sleep(0.03) sleep(0.03)
output(txLed, txLedOff) output(green, txLedOn)
if (command_tx == True): if (command_tx == True):
print("Turning on transmit") print("Turning on transmit")

Loading…
Cancel
Save

Powered by TurnKey Linux.