This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <AutoPID.h> | |
#include <LiquidCrystal.h> | |
#include <max6675.h> | |
double currentTemp = 0.0; | |
double targetTemp = 60.0; | |
bool powerState = LOW; | |
//!MARK: LCD setup | |
LiquidCrystal lcd(8, 9, 4, 5, 6, 7); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Servo.h> | |
int endstopPin = 7; | |
int val = 0; | |
Servo s; | |
int servoPin = 9; | |
int stowAngle = 30; | |
int deployAngle = 160; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SPI.h> | |
#include <Wire.h> | |
#include <Piccolino_OLED.h> | |
#include <Piccolino_RAM.h> | |
#include <EEPROM.h> | |
#include <Adafruit_ADS1015.h> | |
#include <RunningAverage.h> | |
const int buttonPin=3; // push button |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Created by Soemarko Ridwan on 3/23/17. | |
// Copyright © 2017 Soemarko Ridwan. All rights reserved. | |
// | |
// Dependencies: (to simplify the code) | |
// - ActionKit: https://github.com/ActionKit/ActionKit/tree/swift3 | |
// For closure style buttons | |
// - AutoLayout Helper: https://github.com/ustwo/autolayout-helper-swift | |
// I was never a fan of interface builder, a lot more across devices. | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<script> | |
var source = new EventSource('https://api.spark.io/v1/devices/[DEVICE_ID]/events/?access_token=[ACCESS_TOKEN]'); | |
source.addEventListener('logger', function(e) { | |
var p = document.createElement('p'); | |
var d = JSON.parse(e.data); | |
p.innerHTML = d.data; | |
document.body.insertBefore(p, document.body.firstChild); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**************************************************************************** | |
RoastLoggerMax6675.ino | |
This sketch is for use with MAX 6675 thermocouple interface chips. A separate sketch | |
is available for MAX 31855 chips. | |
See the "Contributed Libraries" section of http://www.arduino.cc/en/Reference/Libraries | |
for details of how to install it. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// UIColor+Colours.h | |
// | |
// Created by Soemarko Ridwan on 25/05/13. | |
// Copyright (c) 2013 Soemarko Ridwan. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> | |
@interface UIColor (Colours) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
A slight variant of http://rocketshake.tumblr.com/post/424849450/infinite-scroll | |
This file has been uploaded to http://static.tumblr.com/fpifyru/F4wm4bbxj/autopager.js | |
**/ | |
var tumblrAutoPager = { | |
url: "http://proto.jp/", | |
ver: "0.1.7", | |
rF: true, | |
gP: {}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var btn = Ti.UI.createButton({ | |
title: 'Prompt!', | |
height: 40, | |
width: 100, | |
top: 20 | |
}); | |
var lbl = Ti.UI.createLabel({ | |
text: 'Label', | |
textAlign: 'center' |
NewerOlder