smallneuron 2.3.4__tar.gz → 2.3.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {smallneuron-2.3.4/src/smallneuron.egg-info → smallneuron-2.3.5}/PKG-INFO +1 -1
- {smallneuron-2.3.4 → smallneuron-2.3.5}/pyproject.toml +1 -1
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/sngpio.py +1 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/sninput.py +1 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/snwatcher.py +1 -1
- {smallneuron-2.3.4 → smallneuron-2.3.5/src/smallneuron.egg-info}/PKG-INFO +1 -1
- {smallneuron-2.3.4 → smallneuron-2.3.5}/.gitignore +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/LICENSE +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/README.md +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/example.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/setup.cfg +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/__init__.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/build +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/gpio_h3.c +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/gpio_h3.h +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/gpio_h3.so +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/logger.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/smallneuron.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/sndummy.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/snmqtt.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/snserial.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron/sntimer.py +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron.egg-info/SOURCES.txt +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron.egg-info/dependency_links.txt +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron.egg-info/top_level.txt +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron_pelainux.egg-info/PKG-INFO +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron_pelainux.egg-info/SOURCES.txt +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron_pelainux.egg-info/dependency_links.txt +0 -0
- {smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron_pelainux.egg-info/top_level.txt +0 -0
|
@@ -18,6 +18,7 @@ so_file = "/usr/local/lib/gpio_h3.so"
|
|
|
18
18
|
gpio_h3 = CDLL(so_file)
|
|
19
19
|
|
|
20
20
|
def eventWait(sngpio, event, gpio, trigger, debounce):
|
|
21
|
+
log.info(f"sngpio eventWait tid {threading.get_native_id()}")
|
|
21
22
|
nextTime=0
|
|
22
23
|
while True:
|
|
23
24
|
GPIO.wait_for_edge(gpio,trigger) # block until happen
|
|
@@ -53,7 +53,7 @@ class SnWatcher():
|
|
|
53
53
|
return False
|
|
54
54
|
|
|
55
55
|
def _loop_callback(self, args):
|
|
56
|
-
log.debug(threading.
|
|
56
|
+
log.debug( " _loop_callback start, tid ",threading.get_native_id(), args)
|
|
57
57
|
try:
|
|
58
58
|
[callback_obj,callback_function_args,mode, period] = args
|
|
59
59
|
# Pasamos como argumento a la funcion externa un diccionario para los datos
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{smallneuron-2.3.4 → smallneuron-2.3.5}/src/smallneuron_pelainux.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|