mirror of https://github.com/joan2937/pigpio
fixed untracked files
This commit is contained in:
parent
90d206e941
commit
eb7600ecd9
Binary file not shown.
|
@ -501,6 +501,13 @@ gpioHardwareRevision
|
|||
|
||||
Related code.
|
||||
|
||||
?4|https://pypi.org/project/nrf24/|2020-04-20|NRF24
|
||||
Python Package Index (Pypi) NRF24 module.
|
||||
pip install nrf24
|
||||
|
||||
?4|https://github.com/bjarne-hansen/py-nrf24|2020-04-20|NRF24
|
||||
Code and example usage of the Pypi NRF24 module. Cleaned up and added support for reading from multiple pipes using open_reading_pipe(pipe, address) and open_writing_pipe(address) in order to be more "compatible" with the way NRF24 is used on Arduinos.
|
||||
|
||||
?4|https://github.com/stripcode/pigpio-stepper-motor|2016-08-12|Stepper Motor
|
||||
Stepper motor code.
|
||||
|
||||
|
|
31
util/pigpiod
31
util/pigpiod
|
@ -1,31 +0,0 @@
|
|||
#!/bin/sh
|
||||
### BEGIN INIT INFO
|
||||
# Provides: pigpiod
|
||||
# Required-Start:
|
||||
# Required-Stop:
|
||||
# Default-Start: 2 3 4 5
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: pigpio daemon
|
||||
# Description: pigpio daemon required to control GPIO pins via pigpio $
|
||||
### END INIT INFO
|
||||
|
||||
# Actions
|
||||
case "$1" in
|
||||
start)
|
||||
pigpiod
|
||||
;;
|
||||
stop)
|
||||
pkill pigpiod
|
||||
;;
|
||||
restart)
|
||||
pkill pigpiod
|
||||
pigpiod
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 start" >&2
|
||||
exit 3
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue