Skip to content

Instantly share code, notes, and snippets.

View rjferguson21's full-sized avatar

Rob Ferguson rjferguson21

View GitHub Profile
@riviera65
riviera65 / gist:14caa417342d3d66fdb3
Created December 1, 2014 15:21
DSC Alarm panel keybus decoding with an Arduino
#define CLK 3
#define DTA 4
#include <SPI.h>
#include <Ethernet.h>
#include <EthernetUdp.h>
#include <dns.h>
#include "crc32.h"
#define DEVICEID "0952"
@amrishodiq
amrishodiq / chart.js
Created November 16, 2011 06:59
Example of using Touch Charts's Column Chart
// This sample is based on given example by Sencha,
// http://dev.sencha.com/deploy/touch-charts-rc/examples/Column/
// I simplify it so I hope this example is easier to read by newbies
Ext.setup({
onReady: function() {
// store untuk menyimpan data
window.store1 = new Ext.data.JsonStore({
fields: ['name', 'data1', 'data2'],