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
/* | |
* Adam R. Tindale 2010 | |
* http://www.adamtindale.com | |
* | |
* Create a data folder with your 1-20.jpg files to get it working. | |
*/ | |
PImage[] images = new PImage[20]; | |
int counter = 0; | |
int loadtime; |
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
{ | |
"patcher" : { | |
"fileversion" : 1, | |
"rect" : [ 249.0, 44.0, 955.0, 593.0 ], | |
"bglocked" : 0, | |
"defrect" : [ 249.0, 44.0, 955.0, 593.0 ], | |
"openrect" : [ 0.0, 0.0, 0.0, 0.0 ], | |
"openinpresentation" : 0, | |
"default_fontsize" : 12.0, | |
"default_fontface" : 0, |
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
size(32, 32); | |
smooth(); | |
background(0); | |
strokeWeight(2); | |
stroke(255); | |
line(width/2, height/2, width*.75, height); | |
line(width/2, height/2, width*0.25, height); | |
noFill(); | |
ellipse(width/2, height/2, width*0.6, height*0.6); | |
save("favicon.png"); |
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
// | |
// C4WorkSpace.m | |
// Touch2Video | |
// | |
// Created by Adam Tindale on 2013-01-30. | |
// 2013 Adam Tindale. CC Attribution - http://creativecommons.org/licenses/by/3.0/ | |
// | |
#import "C4WorkSpace.h" |
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
// | |
// C4WorkSpace.m | |
// ShapeSlider | |
// | |
// Created by Adam Tindale on 2013-06-01. | |
// | |
#import "C4WorkSpace.h" | |
@implementation C4WorkSpace |
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
// | |
// C4WorkSpace.m | |
// Touch2Animation | |
// | |
// Created by Adam Tindale on 2013-06-01. | |
// | |
#import "C4WorkSpace.h" | |
@implementation C4WorkSpace |
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
// | |
// C4WorkSpace.m | |
// Swipes Tutorial | |
// | |
// Created by Travis Kirton. | |
// | |
#import "C4WorkSpace.h" | |
@implementation C4WorkSpace { |
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
// | |
// C4WorkSpace.m | |
// MediaPlayr | |
// | |
// Created by Adam Tindale on 2013-06-02. | |
// | |
#import "C4WorkSpace.h" | |
@implementation C4WorkSpace |
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
// | |
// C4Workspace.h | |
// Examples | |
// | |
// Created by Travis Kirton | |
// Modified by Adam Tindale | |
// | |
#import "C4Workspace.h" |
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
/***************** | |
* Example: ATEM Basic Control | |
* Connects to the Atem Switcher and outputs changes to Preview and Program on the Serial monitor (at 9600 baud) | |
* Uses digital inputs 2 and 3 (active High) to select input 1 and 2 on Preview Bus | |
/***************** | |
* TO MAKE THIS EXAMPLE WORK: | |
* - You must have an Arduino with Ethernet Shield (or compatible such as "Arduino Ethernet", http://arduino.cc/en/Main/ArduinoBoardEthernet) | |
* - You must have an Atem Switcher connected to the same network as the Arduino - and you should have it working with the desktop software | |
* - You must make specific set ups in the below lines where the comment "// SETUP" is found! | |
*/ |
OlderNewer