Questions tagged [pebble-sdk]

The Pebble SDK is a software development kit for the Pebble smartwatch and the Pebble App Store. It is generally installed on a computer and includes all of the libraries available to developers for Pebble.

230 questions
0
votes
1 answer

Pebble and firebase js not play together on IOS

I am working on a Pebble watch app that uses Firebase.js. I managed to run Firebase.js on Android (by including it in pebble-js-app.js similar to https://github.com/tyhoff/clock) but no luck on IOS. I got this error when I simply include Firebase.js…
0
votes
0 answers

How to deliver structured text data to a pebble watch app?

As a relative noob to C, I'm looking for a better way to deliver structured textual data to my watch app in a way that allows the watch app to decode it in a nested loop. The data consists of a variable number of records containing two values…
Sailor Al
  • 797
  • 1
  • 7
  • 20
0
votes
1 answer

pebble time color configuration

I try to optimize my configuration of my pebble time watchface. To avoid string comparisons I put all GColor values into an array, but it doesn't work at all :( The array: static uint8_t colors[] = { GColorInchwormARGB8, //1 GColorSpringBudARGB8,…
DonPIZI
  • 1
  • 3
0
votes
1 answer

Pebble tutorial: "pebble build" and "pebble install" throwing errors on Arch machine

I'm having some trouble getting the super basic Pebble tutorial to work correctly. After following the steps in this tutorial, I get to the pebble build part and get a message after 'build' finished successfully That message is [INFO ]…
falconskull
  • 193
  • 1
  • 2
  • 10
0
votes
2 answers

Flipping Pebble Screen Issue

I'm writing a Pebble Time Watch app using Pebble SDK 3.0 on the basalt platform that requires text to be displayed upsidedown. The logic is:- Write to screen Capture screen buffer Flip screen buffer (using flipHV routine, see below) Release…
Doug Conran
  • 437
  • 1
  • 5
  • 17
0
votes
2 answers

Connection Timeout when installing the app on phone

I don't know why I get connection timeout when installing the app on the phone. Here's what I get when working on this manual: Monas-MacBook-Pro:jsapp1 mona$ pebble install --phone 72.33.18.249 [ERROR ] Could not connect to phone at…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
0
votes
1 answer

Developers Option in Pebble App Settings

I am following this manual and I don't have the Developers Option in my Pebble App Setting when I look at Application Manager. Any idea why is that and how I can find it? I have a Samsung Galaxy S6. Pebble app > Settings > Developer Options and…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
0
votes
1 answer

Programming selectable Pebble Watchfaces (Time)

I have started with Pebble watchfaces programming on my Pebble Time, and although the watchface displays fine, it is loaded as an application, not a watchface, in that it is available in the list of applications, not the watchfaces sub-menu. I found…
jfmessier
  • 209
  • 2
  • 4
  • 9
0
votes
1 answer

Can I get sms from pebble sms notification in iOS?

I Want to make some apps for Pebble related sms. When iOS get sms, Pebble notifies sms for me. My Question is following: Can I get sms content from pebble notification? if above question is not valid, how to get sms content like pebble…
appchemist
  • 345
  • 2
  • 3
  • 11
0
votes
1 answer

Pebble.js Clock.Weekday function

So, I don't know if I didn't notice before or what but if I use Clock.weekday and assign a day and hour and minute that are very close to the current date (today or tomorrow) it works. If I assign to a day two days later than the current date it…
Kevin Cohen
  • 1,211
  • 2
  • 15
  • 22
0
votes
1 answer

Pebble watchface crashes immediately upon installation

I'm trying to follow the Pebble C watchface tutorial, and I can get the time to display, but I can't get any weather information to show up. Looking at the logs, it appears that there is a fatal error immediately upon startup: [INFO ] Enabling…
TheSoundDefense
  • 6,753
  • 1
  • 30
  • 42
0
votes
1 answer

Can Pebble app launch its companion app programmatically?

The Pebble mobile app will attempt to keep your app running as long as your Pebble watchapp is running. However, under certain circumstances, the phone may kill the Pebble app and your app. If this occurs, the Pebble mobile app will be…
CocoaBob
  • 533
  • 4
  • 9
0
votes
2 answers

Can't Connect to Pebble Emulator

while I was trying to test my app on Pebble Emulator using Pebble SDK 3.0, I met a connection problem. The Emulator is working normally, but my host machine can't connect to QEMU virtual machine. So, the app wasn't fired up. See followings: > pebble…
Heron Yang
  • 336
  • 2
  • 16
0
votes
1 answer

Pebble Time Basalt Image Merge Pixel

I am wondering if you could help me complete an update to the dayworld map watch face. I am using David Gianforte's applite code and updating for basalt. My goal is to show the day image and when it is night to show the night image. David's code…
Ben
  • 3
  • 1
0
votes
1 answer

Pebble App Message send timed out

I am trying to run the pebble-faces example project from here (it downloads an image from URL and sends it to the watch face). I tried running the project on CloudPebble and the local C SDK emulator. I get the same result. I believe there is…