This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"test": { | |
"test": { | |
"value": "hello world again", | |
"timestamp": 1577030883773 | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"testApp": { | |
"testKey": { | |
"value": 56, | |
"timestamp": 1509312841350 | |
} | |
}, | |
"TestApp": { | |
"TestKey": { | |
"value": 42, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
debugger; | |
var VectorWatch = require('vectorwatch-sdk'); | |
var request = require('request'); | |
var vectorWatch = new VectorWatch(); | |
var logger = vectorWatch.logger; | |
// ----------------------------------- News ------------------------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-----------------------------------------------// | |
// STEPPER LIBRARY FOR SPARK CORE // | |
//===============================================// | |
// Copy this into a new application at: // | |
// https://www.spark.io/build and go nuts! // | |
//-----------------------------------------------// | |
// Technobly / BDub - Jan 2014 // | |
//===============================================// | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-----------------------------------------------// | |
// LIQUIDCRYSTAL LIBRARY FOR SPARK CORE // | |
//===============================================// | |
// Copy this into a new application at: // | |
// https://www.spark.io/build and go nuts! // | |
//-----------------------------------------------// | |
// Technobly / BDub - Jan 2014 // | |
//===============================================// | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wristponder Privacy Policy | |
========================== | |
Wristponder requires use of some sensitive user data in order to perform as expected. | |
Under no circumstances does any of this data leave the device, except when the user uses | |
the 'Report' debug log feature to help debug problems in collaboration with the developer. | |
In this case the information is never used for any purpose except to diagnose and fix bugs. | |
The permissions required to access this data are shown below, with explanations as to their |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require('request'); | |
var https = require('https'); | |
var fs = require('fs'); | |
var URL = 'https://sdk.getpebble.com/v1/files/sdk-core'; | |
var OUTPUT_DIR = './sdks'; | |
if(!fs.existsSync(OUTPUT_DIR)){ | |
fs.mkdirSync(OUTPUT_DIR); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Pebble API Documentation --- | |
NOTE: api2.getpebble.com and appstore-api.getpebble.com both appear to point to the same API | |
App Banners, Categories & Collections: https://api2.getpebble.com/v2/home/apps | |
Watchface Banners, Categories & Collections: https://api2.getpebble.com/v2/home/faces | |
All apps: https://api2.getpebble.com/v2/apps/collection/all/watchapps-and-companions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
pebble emu-set-timeline-quick-view on | |
sleep 1 | |
pebble emu-set-timeline-quick-view off |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******************************* timeline lib *********************************/ | |
// The timeline public URL root | |
var API_URL_ROOT = 'https://timeline-api.getpebble.com/'; | |
/** | |
* Send a request to the Pebble public web timeline API. | |
* @param pin The JSON pin to insert. Must contain 'id' field. | |
* @param type The type of request, either PUT or DELETE. | |
* @param topics Array of topics if a shared pin, 'null' otherwise. |
NewerOlder