The build quality is good for the price. The glass front and metal sides feel sturdy, though we haven’t had it long enough yet to really vouch for its toughness. The back panel, which is clip-on plastic, exposes the electronics and removable battery. While this makes it easy to get into, it does leave us some concerns about how vulnerable this watch will be to water.
The biggest disappointment in this watch is the stock firmware. When you first turn on the device, you’re greeted with a touch interface that looks good, but is ultimately pretty useless. It can connect to WiFi (if you’re patient enough to use the atrocious password entry system), and get time from NTP, but there’s no way of changing the time zone, so you’re stuck with China Standard Time (CST) if you use this. The complex interface chews through the battery far too fast to be useful, unless you enjoy plugging your phone into a USB cable every few hours. Fortunately, this device is designed to be reprogrammed, so the real test is how easy it is to code it into something more useful.
There is an Arduino library for accessing the phone’s hardware at hsmag.cc/SPlWgx. Unfortunately, the documentation for this is almost non-existent at the time of writing, however, there are some example projects to get you started. These aren’t commented well, but if you’re an experienced programmer with some familiarity with the Arduino and ESP32 platform, you should be able to figure out enough to start building something.
A challenge with working on this device is the limited battery life. If you want to use the device as a watch, you’ll probably want to go at least a day between charges – this is only possible if you avoid wasting power. To test out how functional this was as a watch, we put together a minimum viable smartwatch project that just displays the time and counts steps using short clicks on the power button to turn the screen on and off. You can see the code here: hsmag.cc/SaK7MN. It should give you a good base for building your own simple watch projects.
You’ll need to familiarise yourself with using interrupts and messages because these are key to how the library is structured. They let you keep an eye on what’s happening in the device without having to check the status of everything. For example, the power button has a short-tap option which is handled by the AXP power management unit. You can tell if there’s been a short tap with:
if (ttgo->power->isPEKShortPressIRQ()) { … }
It comfortably lasts a day in our testing, though this will depend on how often you check the time and step count. There’s plenty of space left on the screen for adding additional information read-outs (such as displaying information grabbed from the internet).The display supports Adafruit’s GFX library, which makes it easy to draw graphics. While we’ve used a simple drawString() method for putting text on the display, you can get far more creative if you want to. Alternatively, you can use the Light and Versatile Graphics Library (LVGL) to create an interface.
Audio out
You don’t just have to get output via the screen. There’s also a buzzer and vibration motor for keeping track of what’s going on when you don’t have time to look at the screen.
If you’re looking for a more time-related project, you can also access the real-time clock which includes features such as alarm interrupts.
For the price, this is a fantastic wearable computer for anyone willing to put in the effort to bend it to their needs. It can certainly be used as the base of a smartwatch, but it can potentially be much more. Just a few projects that we’d be interested to see are:
• Interacting with other devices over WiFi or Bluetooth, and therefore be a portable controller for almost any of your projects
• The perfectly customisable accessory to a cosplay outfit
• A games controller powered by the accelerometer sending commands over Bluetooth
These are just our ideas though. You may well have some more thoughts.
This is a powerful tool for making some really exciting projects. We’re looking forward to developing more projects with it over the coming months, and also seeing what uses other people find for it.
Lilygo $28.50 tindie.com
VERDICT
A fun platform for wearable computing, but lacking in documentation.
9/10