Skip to content

Instantly share code, notes, and snippets.

@robertcasanova
robertcasanova / writeIP.ino
Created October 27, 2012 10:01
Print IP to LCD
#include <LiquidCrystal.h>
String buffer;
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
boolean isPacket = false;
void setup() {
Serial.begin(9600);
lcd.begin(20, 2);
}
@robertcasanova
robertcasanova / menu.ino
Created November 22, 2012 12:05
LCD Menu
#include <LiquidCrystal.h> //this library is included in the Arduino IDE
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);
const int BTN_LEFT = 9;
const int BTN_RIGHT = 8;
const int BTN_CONFIRM = 10;
long last_read = 0;
@robertcasanova
robertcasanova / app.js
Created November 26, 2012 17:30
Backbone APP
(function($,_,global) {
var App = {
init: function() {
var class_name = $('#page').attr('class');
switch (class_name) {
case 'hp' : {
new App.View.Home.Boxed();
new App.View.Home.Cover();
new App.View.Home.Perfume();
}
@robertcasanova
robertcasanova / gist:4373260
Last active December 10, 2015 03:18
Custom events and subviews with Backbone
App.SidebarView = Backbone.View.extend({
toggle: function() {
if ($(this.el).is(':visible')) {
$(this.el).hide();
this.trigger('collapse'); // <==
} else {
$(this.el).show();
this.trigger('expand'); // <==
}
},
@robertcasanova
robertcasanova / mixin.js
Last active December 10, 2015 03:18
Using Mixin for sharing code within different Views
App.Mixins.Navigation = {
toggle: function() { /* ... */ },
open: function() { /*... */ },
close: function() { /* ... */ }
};
@robertcasanova
robertcasanova / breakpointer.js
Last active December 18, 2015 02:59
Breakpointer
(function($,window, document, undefined){
var defaults = {
resizing: true
}
var BreakpointManager = function(element, options) {
this.el = element;
this.$el = $(element);
this.options = $.extend({}, defaults,options);
this.breakpoints = {};
@robertcasanova
robertcasanova / colorVertex.html
Created August 20, 2013 12:14
Vertex Color with THREE.js
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
background-color: #ffffff;
margin: 0;
overflow: hidden;
}
@robertcasanova
robertcasanova / masterThreeJS.html
Last active December 21, 2015 15:49
Master Template for THREE.JS projects. Forked from https://github.com/blackjk3/threejs-sublime
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
background-color: #fff;
margin: 0;
overflow: hidden;
}
@robertcasanova
robertcasanova / Gruntfile.js
Created August 27, 2013 13:59
Testing with GRUNT + JASMINE
module.exports = function(grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
jasmine : {
src : 'src/**/*.js',
options : {
specs : 'spec/**/*.js'
}
@robertcasanova
robertcasanova / observer.js
Created August 27, 2013 14:09
Observer Pattern With Backbone: communication between objects.
var observer = {};
_.extend(observer,Backbone.Events);
//use
observer.trigger("keyboard:pressed",obj);
observer.on("keyboard:pressed", function(obj) {});