Remote targeting pebble time 2
  • C 55.8%
  • Python 36.3%
  • Shell 4.8%
  • Just 3.1%
Find a file
2026-07-25 09:17:49 +02:00
.idea Initial commit 2026-07-25 09:17:49 +02:00
build Initial commit 2026-07-25 09:17:49 +02:00
resources Initial commit 2026-07-25 09:17:49 +02:00
src/c Initial commit 2026-07-25 09:17:49 +02:00
tools Initial commit 2026-07-25 09:17:49 +02:00
.clangd Initial commit 2026-07-25 09:17:49 +02:00
.lock-waf_linux_build Initial commit 2026-07-25 09:17:49 +02:00
compile_commands.json Initial commit 2026-07-25 09:17:49 +02:00
Justfile Initial commit 2026-07-25 09:17:49 +02:00
package.json Initial commit 2026-07-25 09:17:49 +02:00
README.md Initial commit 2026-07-25 09:17:49 +02:00
wscript Initial commit 2026-07-25 09:17:49 +02:00

open-tracks

A Pebble watchapp/watchface written in C using the Pebble SDK.

Building & running

pebble build                          # build for all targetPlatforms
pebble install --emulator emery       # install on the emery emulator
pebble install --phone <ip>           # install to a paired phone

Target platforms

targetPlatforms in package.json controls which watches you build for. The modern Pebble hardware is emery (Pebble Time 2), gabbro (Pebble Round 2), and flint (Pebble 2 Duo); the original Pebble platforms (aplite, basalt, chalk, diorite) are included by default for backwards compatibility.

Project layout

src/c/           C source for the watchapp
src/pkjs/        PebbleKit JS (phone-side) source, if any
worker_src/c/    Background worker source, if any
resources/       Images, fonts, and other bundled resources
package.json     Project metadata (UUID, platforms, resources, message keys)
wscript          Build rules — usually no need to edit

By default this project is configured as a watchapp. To make it a watchface, set pebble.watchapp.watchface to true in package.json.

Documentation

Full SDK docs, tutorials, and API reference: https://developer.repebble.com