fixed untracked files
authorjoan2937 <joan@abyz.me.uk>
Thu, 7 May 2020 10:53:04 +0000 (11:53 +0100)
committerGuy McSwain <guy.mcswain@gmail.com>
Sat, 27 Jun 2020 12:25:45 +0000 (07:25 -0500)
DOC/dbase/pigpio.sqlite
DOC/src/defs/examples.def
util/pigpiod [deleted file]

index 22ceb98d1881a04d738f5577804bc7869e75672a..6ac1161460adff80dca79168648fec76f71d3a6c 100644 (file)
Binary files a/DOC/dbase/pigpio.sqlite and b/DOC/dbase/pigpio.sqlite differ
index cd793a44bdf84a46a9459d4cbfc28ade5e1e3605..5a54f9221f78cbe97fc42134019c1f33ab04dcb8 100644 (file)
@@ -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.
 
diff --git a/util/pigpiod b/util/pigpiod
deleted file mode 100755 (executable)
index 59ba142..0000000
+++ /dev/null
@@ -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
-