Bigger Watch by SetPebble
There’s another cool watchface on the Rebble App Store!
Go check it out in the App Store!
There’s another cool watchface on the Rebble App Store!
Go check it out in the App Store!
SetPebble just released version 4.0 of Bigger Watch!
4.0.0 Pebble Time 2 support
SetPebble just released version 4.1 of Bigger Watch!
4.1 account token fix
@gorges what did you end up doing for your account token fix? if you don’t mind my asking
I don’t mind at all, and I think this is a temporary fix I am trying out. I still have disappointment that the Pebble.getAccountToken() has gone away, since frankly all 60-70 of my watchfaces/apps from 2014 or so have been using it.
My fix was to drop back to the getWatchToken(), and if that fails then use a random token. Here is the Javascript code for generating the token:
// determine token (account, watch, random)
token = Pebble.getAccountToken();
if (!token)
token = Pebble.getWatchToken();
if (!token)
token = localStorage.getItem('token');
if (!token) {
token = crypto.randomUUID().substring(0, 12);
localStorage.setItem('token', token);
}
What is missing is a token that is connected to someone’s SetPebble account in case they want settings persisted or to take advantage of some account-based features. I have developed a fitness tracking app with GPS, heartrate, distance, that can upload into Strava; however it is missing a simple interface for the upload.
I am still ramping up my Pebble hobby after years away, and getting up to speed is unfortunately slow going for me. I played around with the Clay library a bit, and it is a clever solution but it would be too much effort to convert watchfaces/apps.
I like the Time font, zazzier than your Big Watch font. Any chance of adding the same QUIET TIME and DISCONNECTED text to Bigger Watch?