M5Core Ink Developer Guide
Copyright 2021 Moddable Tech, Inc.
Revised: November 2, 2021
This document provides information about using the M5Core Ink with the Moddable SDK, including how to build and deploy apps and links to other development resources.
SDK and Host Environment Setup
To build and run apps on M5Core Ink, you'll need to:
- Install the Moddable SDK
- Install ESP32 tools
- Follow the instructions in the Building and Deploying Apps section below.
Building and Deploying Apps
There are several example applications in the Moddable SDK that show how to take make best use of the M5Core Ink. See the ePaper blog post for details.
After you've set up your host environment and ESP32 tools, take the following steps to install an application on your M5Core Ink.
-
Attach the M5Core Ink to your computer with the USB cable that came with the device.
-
Build and deploy the app with mcconfig
.
mcconfig
is the command line tool to build and launch Moddable apps on microcontrollers and the simulator. Full documentation of mcconfig
is available here.
Use the platform -p esp32/m5core_ink
with mcconfig
to build for M5Core Ink. For example, to build the epaper-photos
example:
cd $MODDABLE/examples/piu/epaper-photos
mcconfig -d -m -p esp32/m5core_ink
The examples readme contains additional information about other commonly used mcconfig
arguments for screen rotation, Wi-Fi configuration, and more.
See the Troubleshooting section of the ESP32 documentation for a list of common issues and how to resolve them.
The following are implemented and working:
- EPD display driver (GDEW0154M09)
- RTC (PCF8563 / BM8563)
- Up / Down / Middle / Power / External buttons
- LED
- Buzzer
- Battery voltage
The display driver is a Poco PixelsOut
implementation. This allows it to use both the Poco graphics APIs and Piu user interface framework from the Moddable SDK.
The display driver is written entirely in JavaScript. It uses Ecma-419 IO APIs for all hardware access. Performance is excellent, often faster than the EPD class built into the native M5Core Ink library.
The display driver implements dithering, which allows many levels of gray to be displayed using only black and white pixels. The default dithering algorithm is the venerable Atkinson dither. To change to Burkes or to disable dithering:
screen.dither = "burkes";
screen.dither = "none"
Dithering is performed using the new commodetto/Dither
module.
To support dithering the driver requires that Poco render at 8-bit gray (256 Gray). The driver also only supports full screen updates as partial updates with dithering show seams. Partial updates could, and probably should, be supported as they could be useful when not using dithering.
The driver maintains a back buffer, which is more-or-less necessary because of the way the display controller works. Fortunately the buffer is just 5000 bytes, since it can use 1-bit pixels.
The display driver does a full screen refresh on the first draw after instantiation. To disable this, set refresh
to false.
screen.configure({refresh: false});
The display driver uses partial updates after the first frame. To force a full screen update:
screen.configure({refresh: true});
A partial update may be performed on power-up to avoid an initial full screen flash. To do this, the previous frame must first be redrawn to put it back into the controller's memory. To do that, first draw the previous frame with previous
set to true, then draw the next frame as usual. The driver resets the value of previous
to false
after one frame is drawn.
screen.configure({previous: true, refresh: false});
// draw previous
// draw next
Hardware rotation is not supported. It could be, but given that the display is square it isn't obviously useful. Both Poco and Piu support software rotation at build time, so rotation is available if needed, just not at runtime.
All of the buttons are available with callbacks when changed. Here's a basic test that installs callbacks on each.
for (let name in device.peripheral.button) {
new device.peripheral.button[name]({
onPush() {
trace(`Button ${name}: ${this.pressed}\n`);
}
})
}
The green LED at the top of the unit is available:
const led = new device.peripheral.led.Default;
led.on = 1; // full strength
led.on = 0; // off
led.on = 0.5; // half strength
The buzzer is implemented to play tones. As with the M5 Speaker API, sounds are played immediately.
Instantiate the buzzer:
const buzzer = new device.peripheral.tone.Default;
Play a note by name and octave:
Play a note by name and octave for a fixed duration in milliseconds:
buzzer.note("Bb", 4, 500);
Play a tone by frequency:
Play a tone by frequency for a fixed duration in milliseconds:
Mute the buzzer (it automatically unmutes on the next note or tone played):
Close the buzzer:
To get the battery voltage:
const battery = new device.peripheral.battery.Default;
const voltage = battery.read();
Battery Powered Operation
To operate M5Core Ink on battery power, the power hold line must be set to 1. This is done by default in the setup/target
module.
To turn the device off when running on battery power, set the power hold line to 0.
The Moddable SDK has over 150 example apps that demonstrate how to use its many features. Many of these examples run on M5Core Ink.
That said, not every example is compatible with M5Core Ink hardware. For example, some examples are designed to test specific display and touch drivers that are not compatible with the M5Core Ink display and give a build error.
The Moddable SDK Piu examples that do not depend on touch generally seem to work as-is, though some don't look their best on an ePaper display. The display refresh rate on the M5Core Ink is about 3 FPS, so examples like balls
will not look good.
There are several example applications in the Moddable SDK that show how to take make best use of the M5Core Ink. See the ePaper blog post for details.
All the documentation for the Moddable SDK is in the documentation directory. The documentation, examples, and modules directories share a common structure to make it straightforward to locate information. Some of the highlights include:
- The
commodetto
subdirectory, which contains resources related to Commodetto--a bitmap graphics library that provides a 2D graphics API--and Poco, a lightweight rendering engine.
- The
piu
subdirectory, which contains resources related to Piu, a user interface framework that makes it easier to create complex, responsive layouts.
- The
networking
subdirectory, which contains networking resources related to BLE, network sockets, and a variety of standard, secure networking protocols built on sockets including HTTP/HTTPS, WebSockets, DNS, SNTP, and telnet.
- The
pins
subdirectory, which contains resources related to supported hardware protocols (digital, analog, PWM, I2C, etc.). A number of drivers for common off-the-shelf sensors and corresponding example apps are also available.
If you have questions, we recommend you open an issue. We'll respond as quickly as practical, and other developers can offer help and benefit from the answers to your questions. Many questions have already been answered, so please try searching previous issues before opening a new issue.
The best way to keep up with what we're doing is to follow us on Twitter (@moddabletech). We post announcements about new posts on our blog there, along with other Moddable news.