aboutsummaryrefslogtreecommitdiff
path: root/libraries/Esplora/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino
diff options
context:
space:
mode:
authorCristian Maglie <c.maglie@bug.st>2013-08-23 15:59:24 +0200
committerCristian Maglie <c.maglie@bug.st>2013-08-23 15:59:24 +0200
commit540743129b2badb813b703208d121ff14553c147 (patch)
tree6fadb4ebce68e1f0cb298a282be135c23fd156ed /libraries/Esplora/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino
parent073b3ac9d4ae93ac0bb3a91afc65ae9d8f1d5d59 (diff)
parent67c84855c2f3ce99b091a756bb2ca1a016260659 (diff)
Merge branch 'ide-1.5.x' into dev-ide-1.5.x-discovery
Conflicts: app/src/processing/app/Preferences.java app/src/processing/app/debug/Uploader.java
Diffstat (limited to 'libraries/Esplora/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino')
-rw-r--r--libraries/Esplora/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino41
1 files changed, 0 insertions, 41 deletions
diff --git a/libraries/Esplora/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino b/libraries/Esplora/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino
deleted file mode 100644
index 3bf454f..0000000
--- a/libraries/Esplora/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- Esplora Sound Sensor
-
- This sketch shows you how to read the microphone sensor. The microphone
-will range from 0 (total silence) to 1023 (really loud).
- When you're using the sensor's reading (for example, to set the brightness
- of the LED), you map the sensor's reading to a range between the minimum
- and the maximum.
-
- Created on 22 Dec 2012
- by Tom Igoe
-
- This example is in the public domain.
- */
-
-#include <Esplora.h>
-
-void setup() {
- // initialize the serial communication:
- Serial.begin(9600);
-}
-
-void loop() {
- // read the sensor into a variable:
- int loudness = Esplora.readMicrophone();
-
- // map the sound level to a brightness level for the LED:
- int brightness = map(loudness, 0, 1023, 0, 255);
- // write the brightness to the green LED:
- Esplora.writeGreen(brightness);
-
-
- // print the microphone levels and the LED levels (to see what's going on):
- Serial.print("sound level: ");
- Serial.print(loudness);
- Serial.print(" Green brightness: ");
- Serial.println(brightness);
- // add a delay to keep the LED from flickering:
- delay(10);
-}
-