Skip to content

Instantly share code, notes, and snippets.

View iamnbutler's full-sized avatar

Nate Butler iamnbutler

View GitHub Profile
const int analogInPin = A0; // Analog input pin that the potentiometer is attached to
const int analogOutPin = 13; // Analog output pin that the LED is attached to
int sensorValue = 0; // value read from the pot
int outputValue = 0; // value output to the PWM (analog out)
void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);
}

Experience Team

Project Lead: Michelle Lee

Project Members: Kevin Ng, Ramis Hassan, Erica Sokol, Taylor Emmerson

Project Description: The experience team works closely with the Frontend Design team to ensure that all the products we build are exciting and delightful to use. Experience team will make the hard decisions about what needs to be cut in terms of features when products feel bloated. They will be focused on design and UX decisions, and work closely with the Frontend Design team to create the forward-facing portion of all products.


Frontend Design / UI Team

@iamnbutler
iamnbutler / timer.ino
Created October 8, 2015 06:28
Arduino Timer with Time Selector
// include url: http://www.forward.com.au/pfod/ArduinoProgramming/elapsedMillis.zip
#include <elapsedMillis.h>
// Init Hardware
int led[] = {8,9,10,11,12,13}; // Progress LEDs
int startBtn = 7; // Start btn
int resetBtn = 5; // Reset btn
int flip = 6; // Turn system off/on
int dial = 2; // Dial to set time
// Loop variables
@iamnbutler
iamnbutler / Kaishi Base HTML
Created December 23, 2013 20:08
Kaishi Base HTML
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Kaishi</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="icon" type="image/png" href=""> -->
<!-- <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> -->
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}