Skip to content

Instantly share code, notes, and snippets.

View C-D-Lewis's full-sized avatar
🆑

Chris Lewis C-D-Lewis

🆑
View GitHub Profile
@C-D-Lewis
C-D-Lewis / timeline.js
Created June 8, 2015 20:00
Timeline library for PebbleKit JS
/******************************* 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.
@C-D-Lewis
C-D-Lewis / main.c
Last active August 29, 2015 14:01
SDK Tutorial 2
#include <pebble.h>
Window* g_window;
TextLayer *g_text_layer;
GBitmap *g_frame_bitmap;
BitmapLayer *g_frame_layer;
void window_load(Window *window)
{
//Create and add the image
@C-D-Lewis
C-D-Lewis / main.c
Last active August 29, 2015 14:01
SDK Tutorial 1
#include <pebble.h>
Window* g_window;
TextLayer *g_text_layer;
void window_load(Window *window)
{
//We will add the creation of the Window's elements here soon!
g_text_layer = text_layer_create(GRect(0, 0, 144, 168));
text_layer_set_background_color(g_text_layer, GColorClear);