Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: emit PTT on multiple gpio pins #265

Open
craigerl opened this issue Apr 12, 2020 · 7 comments
Open

Feature request: emit PTT on multiple gpio pins #265

craigerl opened this issue Apr 12, 2020 · 7 comments

Comments

@craigerl
Copy link

PTT 24 26

I tried that and only 24 goes high on ptt. would be fun to hookup a red LED to 26.

@mattbk
Copy link

mattbk commented Apr 12, 2021

As a workaround, could you put the LED in series with the PTT circuit?

@craigerl
Copy link
Author

Possibly, but I can't guarantee every radio will like the voltage drop over the diode (may not engage transmitter),
nor can I guarantee the size of the current limiting resistor in every radio (might be dim, smoke, or not turn on at all).

The LEDs on this video aren't possible with the current direwolf,

https://www.youtube.com/watch?v=4JNWIGvlh64

This software gpio-mirror.py solution works 100%, but burns cpu and memory... both scarce on the Pi Zero.

#!/usr/bin/python3

import pyinotify
import RPi.GPIO as GPIO

def handle_change(cb):
   with open('/sys/class/gpio/gpio12/value', 'r') as f:
      #print(f.read())
      status = f.read(1)
      if status == '0':
         #print("OFF")
         GPIO.output(26, GPIO.LOW)
         #system("echo 16 > /sys/class/gpio/export")   # re-enable green led, hangs direwatch
      else:
         #print("ON")
         GPIO.output(26, GPIO.HIGH)
         #GPIO.output(16, GPIO.LOW)                       # turn off green led
         #system("echo 16 > /sys/class/gpio/unexport") # disable green led, hangs direwatch
   f.close

def null_function(junk):  # default callback prints tons of debugging info
   return()



GPIO.setmode(GPIO.BCM)    # logical pin numbers, not BOARD
GPIO.setup(26, GPIO.OUT)  #  RED
#GPIO.setup(16, GPIO.OUT)  #  GREEN  (mute this in case of cross talk)
GPIO.setwarnings(False)   # suppress pin-is-in-use warning

# Instanciate a new WatchManager (will be used to store watches).
wm = pyinotify.WatchManager()

# Associate this WatchManager with a Notifier
notifier = pyinotify.Notifier(wm, default_proc_fun=null_function)

# Add a new watch
wm.add_watch('/sys/class/gpio/gpio12/value', pyinotify.IN_MODIFY)

# Loop forever and handle events.
notifier.loop(callback=handle_change)

@ab0tj
Copy link
Contributor

ab0tj commented Apr 12, 2021

Most radios have their PTT pin pulled to ground to transmit. So why not just hook up the LED with the cathode on the PTT output? Then it both acts as a pullup and a PTT LED.

@dranch
Copy link
Collaborator

dranch commented Apr 12, 2021

It sounds like there might be better ways to poll GPIO pins with lower CPU load:

https://www.raspberrypi.org/forums/viewtopic.php?t=167807

Other options found via using the search "raspberry pi low cpu load method to monitor a GPIO pin"

@craigerl
Copy link
Author

Nope, I'm using the kernel's inotify service for a state change... not polling, so cpu isn't really bad, it's mostly the overhead of yet-another-python-interpretery-loaded-into-memory just to monitor the direwolf ptt pin and mirror its inverse on another pin to drive a led.

@mattbk
Copy link

mattbk commented Apr 13, 2021

Another idea might be to set up another channel with duplicate settings except for the PTT line.

@CtrlC-Root
Copy link

CtrlC-Root commented Jun 23, 2024

I implemented a work around for this detailed here. If you have a spare serial port on your system you could configure Direwolf to use the RTS signal on that (PTT /dev/ttyANY RTS I believe) and then toggle multiple GPIO pins via the ttyhook script. As far as I can tell from a cursory glance at the Direwolf code (1) it opens the serial port in read only mode and (2) it only ever toggles the RTS or DTR signals on it so it; it should be safe to use this with any serial port even one used by other software for other purposes without breaking anything as far as I can tell.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants