1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

Merge branch 'master' of github.com:arduino/Arduino

This commit is contained in:
David A. Mellis 2011-01-15 13:33:36 +00:00
commit d4ed482d2a

View File

@ -35,7 +35,7 @@ void loop() {
int thisPitch = map(sensorReading, 400, 1000, 100, 1000);
// play the pitch:
tone(8, thisPitch, 10);
tone(9, thisPitch, 10);
}