M-A
M-A
I see http://blog.oddbit.com/2017/09/26/some-notes-on-pwm-on-the-raspberry-pi/ I hadn't realize that newer kernels exposed it. That looks totally doable.
Independent of Omega or RPi, this is doable, just need someone to add the enumeration and reconciliation with the GPIO pin numbers.
If the new methods are named `SenseWeather()` and `SenseWeatherContinuous()`, we can have the driver supports both for v3.5.0 which will be less disruptive for users.
Thanks! I was trying to do an [internal refactoring](https://github.com/google/periph/compare/master...maruel:3_poll?expand=1) of the way events are managed first but I got side tracked for a few months. 😞
Maybe the driver didn't want it? I haven't tested this flag at all. :(
I looked at `/usr/include/linux/spi/spidev.h` on my workstation and built a small C program to confirm the values.
Specifically for LEDs and small displays, I created https://periph.io/x/periph/conn/display The rationale is: - It's close to standard image package but Draw() returns an error, which is important. - Users can...
I think this is best done separately from the driver itself. For example, you could write a LinearView for a linear scan based on top of the driver: That's exactly...
Let's aim to have at least an idea how a `gpio.Group` would look like. A Group would be a logical group, not a physical one. To clarify, we're not talking...
The scaffolding is at https://periph.io/x/periph/experimental/host/pru.