Inkplate-micropython
Inkplate-micropython copied to clipboard
Micropython driver for Inkplate boards
So I continue tinkering with the device. With a battery that has been charging for about 2 hours, I try to run this simple example ``` from inkplate5 import Inkplate...
I'm running the following code in order to read the battery level: ```python from inkplate6COLOR import Inkplate Inkplate.readBattery() ``` I will get the following error: ``` Inkplate.readBattery() Traceback (most recent...
I have followed the [docs steps 1 - 3](https://inkplate.readthedocs.io/en/latest/get-started.html#micropython) and now am trying to run the `basicBW.py` example like so: ``` python3 pyboard.py --device /dev/tty.usbserial-110 examples/basicBW.py ``` I get the...
**Expected behavior:** `Examples/Inkplate6COLOR/touchpads.py` should work on the Inkplate 6 Color out of the box **Actual behavior:** The following error occurs: ``` Traceback (most recent call last): File "", line 24,...
If there are multiple touchable areas on screen, the touchInArea function cannot be used reliably to detect contact for any of them (only works reliably for a single button). The...
Expected behavior: `Inkplate.setPanelDeepSleepState` should work properly Actual behavior: The following error occurs: ``` AttributeError: 'int' object has no attribute 'value' ``` Problem: `EPAPER_RST_PIN` is an integer constant. The function should...
Expected behavior: `Inkplate.readBattery` should read the battery level of an Inkplate 6 Color Actual behavior: The following error occurs: ``` Traceback (most recent call last): File "", line 22, in...
I would like to run some functions at defined times and dates. Example: - on Monday to Friday at 7:00 and 8:00 run function A - on Saturday and Sunday...
This repository contains [example code for setting the RTC time](https://github.com/SolderedElectronics/Inkplate-micropython/blob/master/Examples/Inkplate6COLOR/RTC.py). Firstly, there is an error on line 8: ``` >>> display = Inkplate(Inkplate.INKPLATE_1BIT) Traceback (most recent call last): File "",...
I'm new to the Inkplate family, and as I was following the instructions I hit this minor hiccup. It's probably obvious to a lot of people, but I thought it...