I made a controller for Isadora with Arduino analog input.
=======================================
/*
integration of the swithch with analoginput and Isadora
*/
int val;
int ana = 0;
void setup()
{
Serial.begin(9600);
}
void loop()
{
val = analogRead(ana);
Serial.println(1,DEC); // this is the most different command from digital one
Serial.println(val);
delay(500);
}
=================================--
I shoot a demo movie
I will post it on youtube later
0 件のコメント:
コメントを投稿