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.
Questions tagged [pebble-sdk]
230 questions
0
votes
1 answer
Interfacing with iPhone/Android Music Playing over bluetooth with Pebble
I would like to create a simple Pebble watchapp that can play/pause and skip songs that are currently playing on the phone, similar to the built-in app.
I have never created a watchapp, but I have done the Hello World official example app.
I don't…

PRNDL Development Studios
- 3,270
- 2
- 35
- 50
0
votes
1 answer
Pebble SDK Python script: command not found
I have downloaded/installed the Python libraries as instructed on Pebble's installation site (OS 10.9.1, Pebble SDK 2), but when I try to run
pb-sdk.py create-project
in order to create a new project together with its metadata file, I get the…

HenryRootTwo
- 2,572
- 1
- 27
- 27
-1
votes
2 answers
Pebble watch face crashing on exit
I am making a very simple watch face my my Pebble. I have three text layers. One shows the time, on shows the date, and one shows the progress indicator for the day.
Whenever I press a button to go to the menu or go to another watch face, the app…

Chase McCoy
- 1,550
- 2
- 13
- 16
-2
votes
1 answer
Pebble C convert char to time for use in double difftime(time_t end, time_t beginning)
Im trying to convert
static char bufferTR[] = "1645";
to something like this...
struct tm *tick_time = localtime(&temp);
to use in this function...
difftime(time_t end, time_t beginning)
which would give me the time between the two in seconds,…

OscarTheGrouch
- 2,374
- 4
- 28
- 39
-2
votes
2 answers
Please help new to Pebble Smart watch coding try to convert time into number
I just started making pebble watch faces and I want to make a count down timer, that can count how many hours are left in the day and then restarts at 12 am everyday.
the problem is I can not figure out a way to get the math right to display: the…

Josh Martin
- 311
- 3
- 18