Skip to content

Instantly share code, notes, and snippets.

View aaronparsekian's full-sized avatar

Aaron P aaronparsekian

View GitHub Profile
var sound;
var slider1;
var toggle;
var center1;
var center2;
var soundColor;
var d;
function setup() {
createCanvas(500, 500);
@aaronparsekian
aaronparsekian / gist:1a0eb79bf5fa19760b5b
Created November 23, 2015 02:36
Final Project - Receiver
#include <RFM69.h>
#include <SPI.h> // the RFM69 library uses SPI
int ledPin = 9;
RFM69 radio;
#define myFrequency RF69_915MHZ // or RF69_433MHZ (check your radio)
@aaronparsekian
aaronparsekian / gist:8d50ff263e5b62736231
Created November 23, 2015 02:36
Final Project - Transmitter
#include <RFM69.h>
#include <SPI.h> // the RFM69 library uses SPI
RFM69 radio;
#define myFrequency RF69_915MHZ // or RF69_433MHZ (check your radio)
int myNetwork = 147; // radios must share the same network (0-255)
int myID = 1; // radios should be given unique ID's (0-254, 255 = BROADCAST)
int hubID = 0; // the receiver for all sensor nodes in this example
@aaronparsekian
aaronparsekian / transmitterV3
Created November 29, 2015 22:45
transmitter
#include <RFM69.h>
#include <SPI.h> // the RFM69 library uses SPI
RFM69 radio;
#define myFrequency RF69_915MHZ // or RF69_433MHZ (check your radio)
int myNetwork = 147; // radios must share the same network (0-255)
int myID = 1; // radios should be given unique ID's (0-254, 255 = BROADCAST)
int hubID = 0; // the receiver for all sensor nodes in this example
@aaronparsekian
aaronparsekian / receiverV4
Created November 30, 2015 00:13
receiverV4
#include <RFM69.h>
#include <SPI.h> // the RFM69 library uses SPI
int ledPin = 9;
RFM69 radio;
#define myFrequency RF69_915MHZ // or RF69_433MHZ (check your radio)
@aaronparsekian
aaronparsekian / serial
Created December 2, 2015 15:35
for jordan
//serial variables
var serial; // variable to hold an instance of the serialport library
var portName = "/dev/cu.usbmodem1421"; // fill in your serial port name here
// sensor variables
var lineBegin = 0;
var button1 = 0;
var button2 = 0;