Playing Fritzing and arduino. 2 push buttons and 2 LEDs with a basic arduino script.
My first day back at uni we started playing with some Arduino and whilst in the lab I created a basic circuit. Possibly easier than processing.
Heres the link to my first Arduino tutorial!
Just follow the link and you win.
http://fritzing.org/projects/2-leds-2-push-buttons-to-turn-them-on-and-off-wh/

Xtreme Simon – A multiplatform Memory/Concentration game!
Xtreme Simon has now been released!
The website is http://www.xtremesimon.com/ where it can be played online..
It can also be downloaded from the android market at:
https://play.google.com/store/apps/details?id=org.stockroom.project.simonx
Xtreme Simon is built for multiple platforms and is an abstract 3D first-person puzzle game using light, sound and colour to create a strong atmosphere and to produce an interesting new type of game play. The main concept of the game is to create a fast paced environment of colour and sound for the user to interact with.
The chosen development environment is Unity3D. Unity3D is designed for game development and is very easy to create prototypes in and very easy communicate ideas and show practical approaches. The other advantage of using this development environment is that it is easy to export to multiple platforms as Unity is built with compilers for iPhone, Android, Web, PC and Mac. This leaves us with multiple release platforms without having to entirely recode the game for each platform.
The reason why we chose this particular project is because we have not seen a game made using this idea in this context. By combining the idea of ‘Simon says’ with colour spaces, sound and light in a 3D environment we should be capable of conveying an entirely new experience to the user. Many of the team members have also got the correct skill base to ‘walk’ straight into a game development project and rapidly produce very good mock-ups. This allows rapid development and therefore gives us more lee-way for a product closer to professional standards. As unity is c# and javascript based and many our team already have strong and sharp skills in both c# and javascript by using this environment the production of the project material can be accelerated at a greater rate.
The games atmosphere could be comparably similar to the film Cube (1997). http://www.youtube.com/watch?v=qTKfVO56EMs
http://en.wikipedia.org/wiki/Cube_(film)
The games challenges can be quickly conveyed using a reference such as the color and sound game ‘simon says’.
http://www.youtube.com/watch?v=_UCnn4BI9S4&feature=related
As we are using Unity3D our only limitations is the Unity3D development environments limitations as knowledge can always be learned. The only other factor we may be limited by is the HSB colourspace. Fig 1. Has an example of the HSB colourspace which we can only manipulate using the senses the human species has. (hearing and touch).
Long cat the game
market download page: https://market.android.com/details?id=org.longcat.the.game&feature=more_from_developer&rdid=org.longcat.the.game&rdot=1
facebook page: http://www.facebook.com/pages/LONG-CAT-the-GAME/236916466375581?sk=info
website: http://www.longcatgame.com
Jump ‘n’ tilt
Jump ‘n’ Tilt is now available for download on the android market.
Blob the Defender Alpha v0.0001
I just finished the basic core of my game ready for an alpha version. looking for anyone willing to bugtest it!. Please leave comments below! feedback is greatly appreciated!!
Dance Projection Lights.
here is an example i created of how processing could be used as dance projection lights. This could be a really interesting specific piece of software with a bit of development.
Processing Discourse Dance Projection Lights from Joseph Boston on Vimeo.
this is an example of the use of minim library with processing discourse. You can create interesting effects using the minim library. This particular example uses loops to create different sized shapes around the edge. Its only using the audio left and right inputs to create this but you can use FFT (part of the minim library) to make it more accurate to the sounds being produced by the music. Feel free to check out my other projects below also!
Below is the source code for this project:
import ddf.minim.*;
Minim minim;
AudioInput in;
int var1 = 200;
PImage bg;
void setup()
{
minim = new Minim(this);
in = minim.getLineIn(Minim.STEREO, 512);
bg = loadImage("face.jpg");
size(500, 500);
smooth();
frameRate(25);
this.rolling();
}
void draw(){
filter(BLUR, 3);
float a = 8;
translate(width*0.5, height*0.5);
stroke(255, 120);
strokeWeight(3);
for(int i = 0; i < 40; i++){
fill(in.left.get(i)*var1*3, 140, in.right.get(i)*30, 60);
rotate(PI/10);
rect(in.left.get(i)*70, in.left.get(i)*70, in.right.get(i)*70, in.right.get(i)*70);
fill(in.right.get(i)*var1/10, in.left.get(i)*var1, in.right.get(i)*-var1, 60);
ellipse(-200, in.left.get(i)*70, in.right.get(i)*var1, in.right.get(i)*70);
}
var1 += -10;
if(var1 < 20){
var1 += 300;
}
}
void stop()
{
// always close Minim audio classes when you are done with them
in.close();
minim.stop();
super.stop();
}
void rolling(){
int y = 0;
int x = 0;
if((y | x) == 0){
for(y = 0; y < height; y ++){
for(x = 0; x < width; x ++){
point(x, y);
stroke(30, 0, 0);
}
}
int i;
for(i = 0; i < width; i++){
float r = random(10);
strokeWeight(r);
stroke(255, 255, 255, r-4);
line(i, height, i, 0);
}
}
}
Cong Box v1. Another example of sound interacting with shape generation.
This example is using OPENGL to generate a cube.
Using the minim library I have integrated sound to make it decrease and increase in size.
Below is the source code:
/**I created a cube that is colored
using RGB values when settings the vertex positions.
I am using the minim library to change the size of the cube.
I also textured the cube in Normalized mode.
On top of this I left two sides untextured to give a cool glitchy seethrough effect.
LIKE A G6.
This 3d shape interacts with sound and is textured.
**/
import processing.opengl.*;
import ddf.minim.*;
import ddf.minim.signals.*;
import ddf.minim.analysis.*;
import ddf.minim.effects.*;
int si = 30;
PFont fontA;
int var1 = 200;
PImage img;
Minim minim;
AudioOutput out;
SineWave sine;
AudioPlayer music;
float xmag, ymag = 0;
float newXmag, newYmag = 0, i;
float il = 0;
float il2 = 0;
void setup()
{
size(500, 500, OPENGL);
strokeWeight(3);
stroke(0);
textureMode(NORMALIZED);
img = loadImage("img.jpg");
minim = new Minim(this);
music = minim.loadFile("music.mp3", 2048);
// get a line out from Minim, default sample rate is 44100, default bit depth is 16
out = minim.getLineOut(Minim.STEREO, 2048);
fontA = loadFont("HERO.vlw");
// create a sine wave Oscillator, set to 440 Hz,
//at 0.5 amplitude, sample rate 44100 to match the line out
//sine = new SineWave(440, 0.5, out.sampleRate());
// add the oscillator to the line out
//out.addSignal(sine);
music.play();
}
void draw()
{
textFont(fontA, 32);
stroke(int(random(255)), int(random(255)), int(random(255)));
if(frameCount % 5 == 0){
background(255);
}
if(frameCount % 1700 < 20 && frameCount > 1700){
//this creates a really awesome feedback glitch
music = minim.loadFile("music.mp3", 2048);
music.play();
}
println(frameCount);
pushMatrix();
translate(width/2, height/2, -30);
newXmag = mouseX/float(width) * TWO_PI;
newYmag = mouseY/float(height) * TWO_PI;
float diff = xmag-newXmag;
if (abs(diff) > 0.01) { xmag -= diff/4.0; }
diff = ymag-newYmag;
if (abs(diff) > 0.01) { ymag -= diff/4.0; }
rotateX(-xmag);
rotateY(-ymag);
il = music.left.get(1)*100;
il2 = music.right.get(1)*100;
float outs = il+il2;
if(outs < 40){
outs = 40;
}
scale(outs);
beginShape(QUADS);
texture(img);
vertex(-1, 1, 1, 0, 0);
vertex( 1, 1, 1, 1, 0);
vertex( 1, -1, 1, 1, 1);
vertex(-1, -1, 1, 0, 1);
vertex( 1, 1, 1, 0, 0);
vertex( 1, 1, -1, 1, 0);
vertex( 1, -1, -1, 1, 1);
vertex( 1, -1, 1, 0, 1);
vertex( 1, 1, -1, 0, 0);
vertex(-1, 1, -1, 1, 0);
vertex(-1, -1, -1, 1, 1);
vertex( 1, -1, -1, 0, 1);
vertex(-1, 1, -1, 0, 0);
vertex(-1, 1, 1, 1, 0);
vertex(-1, -1, 1, 1, 1);
vertex(-1, -1, -1, 0, 1);
vertex(-1, 1, -1);
vertex( 1, 1, -1);
vertex( 1, 1, 1);
vertex(-1, 1, 1);
vertex(-1, -1, -1);
vertex( 1, -1, -1);
vertex( 1, -1, 1);
vertex(-1, -1, 1);
endShape();
popMatrix();
fill( int(random(255)), int(random(255)), int(random(255)));
stroke( int(random(255)), int(random(255)), int(random(255)));
text("Cong Box v1.0", width/2-100, 30 );
}
void stop()
{
// always close Minim audio classes when you are done with them
out.close();
minim.stop();
super.stop();
}
void musicalVar()
{
stroke(255);
// draw the waveforms
for(int i = 0; i < out.bufferSize() - 1; i++)
{
line(i, 50 + out.left.get(i)*50, i+1, 50 + out.left.get(i+1)*50);
line(i, 150 + out.right.get(i)*50, i+1, 150 + out.right.get(i+1)*50);
}
}
Get In touch!
Latest Posts
- Playing Fritzing and arduino. 2 push buttons and 2 LEDs with a basic arduino script.
- I dont want to use office365 thanks goldsmiths.
- How to create an Android application and submit it to the market pdf guide.
- Xtreme Simon – A multiplatform Memory/Concentration game!
- Processing Tutorial 7 – Android accelerometer and you
- Long cat the game
- Processing Tutorial 6 – Android Processing Basics and 3D texturing
- Biography and Contact Information
- OpenFrameworks Research
- Jump ‘n’ tilt
- E1 Android App
- creating a signed app using the processing export
- Installing and Compiling Ant
- Processing Tutorial 5 – Basic 3D
- Processing Tutorial 4 – lets create something useful
- Processing Tutorial 3 – Using Methods
- Worlds first Bionic arm
- Processing Tutorial 2 – Basic Shapes
- Processing Tutorial 1 – Getting to know Processing
- SHAFT
- Sounds generative walls.
- ROK Android App
- Blob the Defender Alpha v0.0001
- Dance Projection Lights.
- Cong Box v1. Another example of sound interacting with shape generation.
- I dreamt in code… is this normal? better keeping a notepad and pen next to my bed.
- A World Of Creation
- Illustrations






