A Pebble watchapp that shows Plain support threads, details, and recent messages on the watch.
The watch UI is native Pebble C. The phone companion is PebbleKit JS and owns Plain GraphQL requests, Clay configuration, and API-key storage. The watch and phone exchange compact AppMessage strings using record and field separators.
| Thread List | Thread Details | Thread Messages |
|---|---|---|
|
|
|
|
After installing the application from the Pebble Store, open the app settings in the Pebble/Rebble phone app and enter a Plain machine user API key. The key is stored by PebbleKit JS on the phone and is not sent to the watch.
You can generate a machine user key in Plain under Settings → API → Machine users. The key needs threads:read scope to show threads and messages:read scope to show recent messages.
The app targets modern Pebble hardware: emery (Pebble Time 2) and gabbro (Pebble Round 2). Other platforms are currently not officially supported.
pebble build # build for all targetPlatforms
pebble install --emulator emery --logs # install on the emery emulator
pebble install --phone <ip> # install to a paired phonesrc/c/mdbl.c Native watch UI, navigation, AppMessage parsing
src/pkjs/index.js PebbleKit JS orchestration and payload sending
src/pkjs/plain.js Plain GraphQL client and response mapping
src/pkjs/settings.js Phone-side API key storage
src/pkjs/config.js Clay configuration page
package.json Project metadata (UUID, platforms, resources)
wscript Build rules — usually no need to edit
Not affiliated with Plain
MIT