Daniel Esteban
Daniel Esteban
Unfortunately, SPI support is missing for the Nano :( https://tinygo.org/microcontrollers/arduino-nano/
Oh, right. The drivers works for I²C and SPI, but it need both declared to work properly. Not sure if using some build tags we could split the driver in...
I'm re-opening this issue, thanks for bringing this up. This is a problem with the driver and should get fixed or at least propose an alternative, I think some other...
I'm not sure how the sdcard is implemented in hardware, but there's a driver for FLASH memories ( https://github.com/tinygo-org/drivers/tree/master/flash ) that might be worth take a look at. Some work...
I'm a bit divided by this, but generally in favor of this chagne. _TWI_ is clearly confusing but I'd like to have some constants. From a beginner's point of view,...
While floats are generally supported, they tend to generate a number of issues and it's better to avoid them when possible. Sensors in tinygo usually works with millis unit (millidegrees...
If you are using a spi transport you should be passing it already configured to the device New function. Existing drivers are a good template for new ones. Don't worry...
Hi @gregoster nice work! It would be great it you could make a PR from it, so we could properly review it and occasionally merge it. A few general things...
Hello, Please, put each example inside a folder like ``` examples/xpt2046/gpio/main.go examples/xpt2046/spi/main.go ``` Please, make a PR (to the `dev` branch), so we can comment and create a proper review...
Depending on how much difference there are between versions. Personally, I would add a new constructor... like ```func NewABC(b drivers.SPI, latPin, oePin, aPin, bPin, cPin machine.Pin) Device {``` and use...