Skip to content

Instantly share code, notes, and snippets.

/*
This code is a modified version of the default AnalogReadSerial code listed in the description below.
It was successfully tested using a MyoWare muscle sensor and an Adafruit Feather 32u4 Bluefruit board.
Thanks to professor Kate Hartman at the OCAD University in Toronto, Canada.
A video of the experiment can be seen at:
https://vimeo.com/196173491
AnalogReadSerial
/***************************************************
The following code was developed by Thoreau Bakker & Junjun Zhu,
built by editing the template from Tony DiCola as noted immediately below.
It uses ifttt to route twitter feeds to adafruit.io, and then blinks LEDs on an Adafruit Huzzah in response to hashtags
Much thanks to Professors's Puckett and Hartman at Ocad University in Toronto, Canada
(original)
@thoreaubakker
thoreaubakker / sketch.js
Created October 31, 2016 03:08
Tam Tam Digital Code Sample 2
//This Code has been developed by Thoreau Bakker & Samaa Ahmed, with the generous help of Professor Kate Hartman, Professor Nick Puckett and Junjun Zhu
//It is for a class on creation & computation at Ocad University in Toronto, Canada, in the fall of 2016
var song, analyzer;
var canvas;
function preload() {
soundFormats('wav');
sample = loadSound('warble.wav');
@thoreaubakker
thoreaubakker / sketch.js
Last active October 31, 2016 03:06
TamTamDigitalCodeExample1
//This Code has been developed by Samaa Ahmed & Thoreau Bakker, with the generous help of Professor Kate Hartman, Professor Nick Puckett and Junjun Zhu
//It is for a class on creation & computation at Ocad University in Toronto, Canada, in the fall of 2016
function preload() {
soundFormats('wav');
sample = loadSound('kick.wav');
sample2 = loadSound('kick2.wav');
}