Patricio Whittingslow
Patricio Whittingslow
I'm sorry for not answering sooner, how rude of me. I'll be back and working with this repo sometime within the next 20ish days. My use case is the following:...
So today I had to work with yet another actuator and settled for your library yet again. I keep coming back to it with new insights. So I like your...
Here's an example of what the API could look like: ```go package sy0x import ( "context" "errors" "math" "time" "github.com/distributed/sers" "github.com/smallnest/ringbuffer" ) type Txer struct { sp sers.SerialPort err error...
> The following article has a nice overview: https://eli.thegreenplace.net/2009/08/12/framing-in-serial-communications Thank you a billion. This was a 10/10 read. > Sers is a library focussed on providing access to serial ports,...
I'm very curious as to whether this is a bug on the RP2040's side. I've bought a couple ST7789's to test this out.
Sorry I did not get to this. Implementing the wifi driver for the Pico W is *driving* me mad. I could suggest you try to use a bitbang SPI to...
I have been able to replicate this issue on a raspberry pi pico with hardware SPI. Will try to get around to seeing if the software SPI has different results.
Following program works on the Waveshare zero, both with SPI Mode 0 and SPI Mode 3 (I had made a mistake during initialization before) https://github.com/tinygo-org/tinygo/assets/26156425/3d02a1ac-6cfa-4292-9a9b-3e6a0bf50b38 ```go package main import (...
Andre, out of curiosity: what version of tinygo are you running? You can check with `tinygo version` in console.
Yeah for sure you could use this as a control plane- you'd need a broker that all devices connect to though- natiu does not have a broker/server implementation. Several implementations...