nvrmnd. transistors were in backwards. Now, I get some fluctuation from 170~250, which you can see on a pwm'd led.
Edit: Just ran a high/low program:
int low = 1023;
int high = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(A3);
if (sensorValue < low) {
low = sensorValue;
}
if (sensorValue > high) {
high = sensorValue;
}
Serial.print("h: ");
Serial.print(high);
Serial.print("\t");
Serial.print("l: ");
Serial.println(low);
}
And if I clap ~5 inches from mic I get h:939, l:40. So it works! yay!!