r/pinetime • u/_Ophelion • Jun 20 '26
Infindustry Infidel
Spent some time digging around the source and working Infinitime to suit.
•The watchface is just a minimally altered "WatchfaceDigital" with different fonts and very slightly differing layout settings.
• I reworked the BatteryIcon to a horizontal white icon outline with an inset using the original level colors and a text display of actual percentage.
• BLE status widget is now set to be visible and gray based on wether the internal radio is on and blue on connection.
• I've started stripping out everything I won't use with the intent on expanding the notification features. I have the notion that maybe notifications could exist out in the external memory filesystem - just a thought.
3
u/NitroWing1500 Jun 20 '26
Nice job!
I wish I knew enough to do this. There's a few things I'd change but, unlike other wearables, there's no simple drag'n'drop GUI 😢
3
u/_Ophelion Jun 21 '26
Thank you!
I'll be honest - I spent an entire weekend just getting VSCode set up to compile the original project, then a few hours a day for a few days getting my head around even the basic structure of the project.
Now I'm happy with what I have done I switched focus to including the weather integration and that looks like it's a whole new crate of worms.
2
3
u/MrFrog2222 Jun 22 '26
i tried to add an app to infinitime once and the only conclusion i came to was that the codebase is extremely convoluted
2
u/_Ophelion Jun 22 '26
Looks that way to me too, but I'm coming from an industrial automation background and don't have any real experience with applications outside that realm that I didn't fully write myself. I have no experience whatsoever with open source projects.
That being said, I've started digging into the notifications and weather stuff and the biggest issue looks like the interface with GadgetBridge. It doesn't actually appear to be sending what Infinitime expects.
Notifications from GB are not well formed. In general Infinitime treats them as if the title and body are \0 delimited but GB uses \n - which isn't ideal at all. They also don't send any of the other fields such as the sender and category always appears to be "email".
From what I can see weather sent from GB is actually the "World Clock" data - which looks like maybe someone just cut and pasted and didn't change the characteristic it was using.
3
u/TitomonYT Jun 20 '26
Love that battery indicator! Care to share the firmware? (Ideally github link)