libgpiod icon indicating copy to clipboard operation
libgpiod copied to clipboard

This is a mirror of the original repository over at kernel.org. This github page is for discussions and issue reporting only. PRs can be discussed here but the patches need to go through the linux-gpi...

Results 38 libgpiod issues
Sort by recently updated
recently updated
newest added

Apologies if this is the wrong place for this issue, but when I try to download a tagged version of this project from git.kernel.org I get `404 Not Found` eg...

There is an old **libgpiod** package on PyPI, currently at 2.0.1, which is confusing since the official package name is now **gpiod** and is at 2.1.3. Can the old package...

I had to test then peek at source to confirm that ms was the default (and then found out that suffixes are allowed). It might be worth mentioning default ms...

Thank you ! I've been using this lib for 2 months to use my GPIO with a C program. It's going great! Olaf from Germany

Hello, HW: RPi 3B, OS: ArchLinux, Kernel: 6.1.69-1-rpi-ARCH, Python: 3.11, gpiod: 2.1.3 from pypi.org I'm porting some of my python scripts to libgpiod and I've run into a problem with...

**I have cloned libgpiod from this web site (brgl/libgpiod). I am having problems building libgpiod.** I am running the software on a Raspberry PI 3B+ using Raspbian Buster OS. I...

I am using libgpiod 1.6.2 on a RPi ~3B~ 4B with Raspbian Bullseye. I have implemented an interrupt monitor strictly following [this](https://github.com/brgl/libgpiod/blob/v1.6.x/bindings/cxx/examples/gpiomoncxx.cpp) example (triggers on falling edges). Each interrupt is...

Hi @vfazio I had some time today to test the wheels and while the ones for glibc work fine for `x86-64` and `aarch64`, the ones linked against musl give me...

For this script: import gpiod chipname = "gpiochip0" line_offset_16 = 16 line_offset_26 = 26 chip = gpiod.Chip(chipname) line_16 = chip.get_line(line_offset_16) line_26 = chip.get_line(line_offset_26) try: events = line_26.request(consumer="test_continuity", type=gpiod.LINE_REQ_EV_BOTH_EDGES) line_16.set_value(1) time.sleep(0.1)...

Hi, On our ASRock IMB-1313 industrial motherboard, we're using GPIO70-GPIO72: (Please see attached user's manual, p. 24) GPIO70: push button switch input: N.O. (L), pushed (H) GPIO71: buffered Green LED...