| Age | Commit message (Collapse) | Author |
|
In particular, the WeMOS D1 Mini board comes with a shield that has a
64x48 OLED display. This patch makes it display properly, with the upper
left pixel being at (0, 0) and not (32, 0).
I tried to do this with the configuration commands, but there doesn't
seem to be a command that would set the column offset (there is one for
the line offset, though).
|
|
Makes it work on the ESP8266.
|
|
The C implementation is taken from the DHT driver.
|
|
Uses mp_hal_pin API.
|
|
The timeval struct can be defined by system C headers.
|
|
|
|
|
|
Apparently some cards need more than 2 retries. See issue #1482.
|
|
Addresses issue #1466.
|
|
|
|
|
|
|
|
|
|
Those trace messages have never proven to be useful and they make
the code 9K bigger.
|
|
|
|
|
|
|
|
This commit will not build, it exists just to track changes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Comes with test script. Copy both files to pyboard and run
"import nrf24l01test".
|
|
|
|
3rd party drivers should not export generic names like "close".
|
|
Most of the time you don't use the NSS pin of the SPI bus, and so it
shouldn't be enabled by default (this gave some bugs in the past).
|
|
|
|
Allows to create socket objects that support TCP and UDP in server and
client mode. Interface is very close to standard Python socket class,
except bind and accept do not work the same (due to hardware not
supporting them in the usual way).
Not compiled by default. To compile this module, use:
make MICROPY_PY_WIZNET5K=1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|