Jorge
Jorge
There are devices that can be run in "Arduino ICSP mode", this is SPI but no CS signal. This also makes sense if you only have one SPI device and...
Is there a reason why this snippet ``` if (len > 1) { i2c_master_read(cmd, (uint8_t *) data, len, I2C_MASTER_LAST_NACK); } else { i2c_master_read_byte(cmd, (uint8_t *) data, I2C_MASTER_ACK); } ``` in...
It would be great if we could use websockets. That would allow to have complex client side UI, portably, and some light API on the microcontroller side. Do you have...
I have an applications that uses sockets to distribute data read from the standard input. I don't see how I can get a file descriptor for standard files for nixio....
Hi, I branched your project (https://github.com/xopxe/bbl-twitter) and made some changes: 1. The module is returned as a table, with no global pollution 2. Made twitter api version 1.1 compatible: -...