Living guide for novice PineTime tinkerers
My PineTime arrived on the 14th of February, 2025. The PineTime is a light-weight smartwatch equipped with a photoplethysmography (PPG) sensor and an accelerometer. It’s cheap, does not sell your data, and it’s fully open-source. Owners can modify its hardware and software at will. This post will outline procedures, links, tips and snippets for tinkering with InfiniTime (PineTime’s default firmware ).

Editing the firmware
Explains how we can start editing InfiniTime.
- Fork the InfiniTime repository . This will create a copy of the repository in our own Github account.
- Go to the new fork, mine lives at https://github.com/koenraijer/InfiniTime , yours will live at
https://github.com/[USERNAME]/InfiniTime
. - Edit a file in the repository and commit your changes. For example, to change the stopwatch app, go to
InfiniTime/src/displayapp/screens/StopWatch.cpp
. - Every time we commit a change to our fork, the source code is automatically converted by a GitHub Action (my fork’s version ).
Github also tracks updates we make to our fork, and also allows us to pull updates from the original PineTime repository and apply them to our fork.
This allows us to:
- Submit a pull request if we’ve made a useful update. If our pull request is accepted, our changes become part of the official project. This is how open source projects are maintained and improved.
- Update our local version with the official project so we don’t miss out on other people’s contributions.
Flashing our custom firmware
This explains how to apply edits made to our InfiniTime fork and update our PineTime with them. The process of reprogramming firmware is known as flashing. It involves the writing of new firmware onto the device’s internal memory. Flashing is perfectly possible with a sealed PineTime. We’ll be using the NRFConnect app to flash our custom firmware to the PineTime over BlueTooth.
- On our phone, download the NRFConnect app (App Store , Google Play ).
- Now we need one of the files built by the action that ran after we committed our change. We can follow the next steps on our phone or on our computer, but we must have access to the downloaded file on our phone.
- In our fork, go to the Actions tab. We should see something like this:

- This means that the
CI
action ran successfully (this is the action linked to previously). Let’s click on the run.

- At the bottom of the screen, we’ll see a list of artifacts. These are the files created by the action. We need the
InfiniTime DFU main
file. Let’s click on the download icon to the right. The file should be calledInfiniTime DFU main.zip
.

- On our phone, open the NRFConnect app. In the Scanner tab, look for “InfiniTime”. Click on Connect. If it’s not there, make sure the PineTime is not connected to a companion app.

- Now click on Open Document Picker and select the
InfiniTime DFU main.zip
file on our phone.

- Let’s scroll down until a Start button appears and click on it.

- The file will now be uploaded to your PineTime over BlueTooth, as indicated by the progress indicator on the app.

- The PineTime will now show that it’s updating.
