Skip to content

Instantly share code, notes, and snippets.

View orviwan's full-sized avatar

Jon Barlow orviwan

View GitHub Profile
@orviwan
orviwan / app.js
Last active December 29, 2015 00:42
Pebble.js Tutorial Part 1 - 1
var UI = require('ui');
// Create a Card with title and subtitle
var card = new UI.Card({
title:'Weather',
subtitle:'Fetching...'
});
// Display the Card
card.show();