File: EsploraSoundSensor.ino

package info (click to toggle)
arduino 2%3A1.0.5%2Bdfsg2-4.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 40,336 kB
  • sloc: java: 57,238; cpp: 23,031; ansic: 13,695; makefile: 2,315; xml: 502; perl: 201; sh: 156; python: 62
file content (41 lines) | stat: -rw-r--r-- 1,094 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
  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); 
}