Hello everyone,
could not find answer here nor on the web. Pretty strange ... the system returns an error but seams to work anyway. I want to eliminate the error.
Such is my code (lines 1-11)
Such is the error message:
such is the code (lines 701-706)
and about File "/usr/lib/python3/dist-packages/lgpio.py", line 903, in gpio_read
such are lines 887-903I also tried sending default values like this:but an other error shows up, something like « can not set value on PULLD when OUTPU »
Any idea ?
Thanks.
could not find answer here nor on the web. Pretty strange ... the system returns an error but seams to work anyway. I want to eliminate the error.
Such is my code (lines 1-11)
Code:
#!/usr/bin/env python# -*- coding: utf-8 -*-# Copyright (c) 2017-18 Richard Hull and contributors# See LICENSE.rst for details.import reimport timeimport argparseimport RPi.GPIO as GPIOGPIO.setmode(GPIO.BCM)GPIO.setup(24, GPIO.OUT)
I had a look on /usr/lib/python3/dist-packages/RPi/GPIO/__init__.py", line 704Traceback (most recent call last):
File "/var/www/html/scripts/Affichons.py", line 11, in <module>
GPIO.setup(24, GPIO.OUT)
File "/usr/lib/python3/dist-packages/RPi/GPIO/__init__.py", line 704, in setup
initial = _check(lgpio.gpio_read(_chip, gpio))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/lgpio.py", line 903, in gpio_read
return _u2i(_lgpio._gpio_read(handle&0xffff, gpio))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3/dist-packages/lgpio.py", line 458, in _u2i
raise error(error_text(v))
lgpio.error: 'GPIO not allocated'
such is the code (lines 701-706)
Code:
elif direction == OUT: _unset_alert(gpio) if initial is None: initial = _check(lgpio.gpio_read(_chip, gpio)) _check(lgpio.gpio_claim_output( _chip, gpio, initial, lgpio.SET_PULL_NONE))
and about File "/usr/lib/python3/dist-packages/lgpio.py", line 903, in gpio_read
such are lines 887-903
Code:
def gpio_read(handle, gpio): """ This returns the level of a GPIO. handle:= >= 0 (as returned by [*gpiochip_open*]). gpio:= the GPIO to be read. If OK returns 0 (low) or 1 (high). On failure returns a negative error code. This command will work for any claimed GPIO (even if a member of a group). For an output GPIO the value returned will be that last written to the GPIO. """ return _u2i(_lgpio._gpio_read(handle&0xffff, gpio))
Code:
GPIO.setup(24, GPIO.OUT, None,False)
Any idea ?
Thanks.
Statistics: Posted by Patriboom — Wed Nov 27, 2024 2:57 pm