|
| 1 | +# Photoresistor => Buzzer && Button => Motor |
| 2 | + |
| 3 | +This tutorial creates a circuit with two separate functions. |
| 4 | + - The photoresistor is used to play a tune on the buzzer based on a certain light level |
| 5 | + - When the button is pressed the servo motor moves 180 degrees. When released, it moves back to 0. |
| 6 | + |
| 7 | + |
| 8 | +This sketch uses code from SparkFun SIK version 3.3, from experiments 5, 6, 8, and 11. |
| 9 | +Visit https://learn.sparkfun.com/tutorials/sik-experiment-guide-for-arduino---v33/ for SIK information. |
| 10 | +Visit http://www.arduino.cc to learn about the Arduino. |
| 11 | +This code is completely free for any use. |
| 12 | + |
| 13 | +## Components Needed: |
| 14 | + |
| 15 | +- 1 - Arduino Uno R3 + USB A-to-B Cable |
| 16 | +- 1 - Breadboard |
| 17 | +- 12 - Jumper Wires |
| 18 | +- 1 - Servo Motor |
| 19 | +- 1 - 330Ω or 220Ω Resistor |
| 20 | +- 1 - push button |
| 21 | +- 1 - piezo buzzer |
| 22 | +- 1 - photoresistor |
| 23 | +- 1 - computer to connect the Arduino to with the Arduino IDE software installed (https://www.arduino.cc/en/software) |
| 24 | + |
| 25 | +## Wiring Diagram |
| 26 | + |
| 27 | + |
| 28 | + |
| 29 | +## Code |
| 30 | + |
| 31 | +```c++ |
| 32 | +/************************************************** |
| 33 | + SERVO CODE |
| 34 | +*/ |
| 35 | +// Include the Servo library |
| 36 | +#include <Servo.h> |
| 37 | + |
| 38 | +// Create constants for setting pins. |
| 39 | +const int sensorPin = 0; |
| 40 | +const int servoPin = 9; |
| 41 | +// Create servo control object |
| 42 | +Servo servo; |
| 43 | +/**************************************************/ |
| 44 | + |
| 45 | + |
| 46 | + |
| 47 | +/************************************************** |
| 48 | + BUZZER CODE |
| 49 | +*/ |
| 50 | +const int buzzerPin = 12; |
| 51 | +const int songLength = 18; |
| 52 | + |
| 53 | +char notes[songLength] = |
| 54 | +{'c', 'd', 'f', 'd', 'a', ' ', 'a', 'g', ' ', 'c', 'd', 'f', 'd', 'g', ' ', 'g', 'f', ' '}; |
| 55 | + |
| 56 | +int beats[songLength] = {1, 1, 1, 1, 1, 1, 4, 4, 2, 1, 1, 1, 1, 1, 1, 4, 4, 2}; |
| 57 | + |
| 58 | +int tempo = 113; |
| 59 | +/****************************************************/ |
| 60 | + |
| 61 | + |
| 62 | + |
| 63 | + |
| 64 | +/***************************************************** |
| 65 | + PHOTORESISTOR CODE |
| 66 | +*/ |
| 67 | +// Set some contstants. Set the low at the highest value, it will auto adjust. |
| 68 | +// Set the high at the lowest, it will also auto adjust. |
| 69 | +int lightlevel, low = 1023, high = 0; |
| 70 | +/* Change tripPoint value to increase or decrease the sensitivity. |
| 71 | + * View the values produced by the photoresistor (Serial.println) |
| 72 | + * to see what the high and low values will be. Set this about 100 |
| 73 | + * more than the low value. |
| 74 | + */ |
| 75 | +int tripPoint = 400; |
| 76 | +/******************************************************/ |
| 77 | + |
| 78 | + |
| 79 | + |
| 80 | + |
| 81 | +/***************************************************** |
| 82 | + BUTTON CODE |
| 83 | +*/ |
| 84 | +int buttonPin = 2; |
| 85 | +int buttonState; |
| 86 | +/*****************************************************/ |
| 87 | + |
| 88 | + |
| 89 | + |
| 90 | +void setup() { |
| 91 | + // set the servo pin |
| 92 | + servo.attach(servoPin); |
| 93 | + servo.write(0); // servo should be at 0 to start |
| 94 | + |
| 95 | + // set the buzzer pin |
| 96 | + pinMode(buzzerPin, OUTPUT); |
| 97 | + |
| 98 | + // set the button pin |
| 99 | + pinMode(buttonPin, INPUT); |
| 100 | + |
| 101 | + // Uncomment line below to allow for serial output - reading the sensor data |
| 102 | + Serial.begin(9600); |
| 103 | + |
| 104 | +} |
| 105 | + |
| 106 | + |
| 107 | +void loop() { |
| 108 | + /************************************** |
| 109 | + BUTTON AND SERVO CODE |
| 110 | + */ |
| 111 | + buttonState = digitalRead(buttonPin); |
| 112 | + |
| 113 | + // if the button is pressed, move the servo to angle 180 |
| 114 | + // if not, angle is 0 |
| 115 | + if (buttonState == LOW) { |
| 116 | + servo.write(180); |
| 117 | + } else { |
| 118 | + servo.write(0); |
| 119 | + } |
| 120 | + /*************************************/ |
| 121 | + |
| 122 | + |
| 123 | + |
| 124 | + |
| 125 | + |
| 126 | + /********************************* |
| 127 | + LIGHT AND BUZZER CODE |
| 128 | + */ |
| 129 | + lightlevel = analogRead(sensorPin); |
| 130 | + |
| 131 | + Serial.println(lightlevel); |
| 132 | + |
| 133 | + if (lightlevel < tripPoint) { |
| 134 | + playBuzzer(); // this function created below |
| 135 | + } |
| 136 | + /********************************/ |
| 137 | + |
| 138 | +} |
| 139 | + |
| 140 | + |
| 141 | + |
| 142 | +void playBuzzer() |
| 143 | +{ |
| 144 | + int i, duration; // |
| 145 | + |
| 146 | + for (i = 0; i < songLength; i++) // for loop is used to index through the arrays |
| 147 | + { |
| 148 | + duration = beats[i] * tempo; // length of note/rest in ms |
| 149 | + |
| 150 | + if (notes[i] == ' ') // is this a rest? |
| 151 | + delay(duration); // then pause for a moment |
| 152 | + else // otherwise, play the note |
| 153 | + { |
| 154 | + tone(buzzerPin, frequency(notes[i]), duration); |
| 155 | + delay(duration); // wait for tone to finish |
| 156 | + } |
| 157 | + delay(tempo / 10); // brief pause between notes |
| 158 | + } |
| 159 | + |
| 160 | +} |
| 161 | + |
| 162 | +int frequency(char note) |
| 163 | +{ |
| 164 | + int i; |
| 165 | + const int numNotes = 8; // number of notes we're storing |
| 166 | + char names[numNotes] = { |
| 167 | + 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'C' |
| 168 | + }; |
| 169 | + int frequencies[numNotes] = { |
| 170 | + 262, 294, 330, 349, 392, 440, 494, 523 |
| 171 | + }; |
| 172 | + |
| 173 | + // Now we'll search through the letters in the array, and if |
| 174 | + // we find it, we'll return the frequency for that note. |
| 175 | + |
| 176 | + for (i = 0; i < numNotes; i++) // Step through the notes |
| 177 | + { |
| 178 | + if (names[i] == note) // Is this the one? |
| 179 | + { |
| 180 | + return (frequencies[i]); // Yes! Return the frequency and exit function. |
| 181 | + } |
| 182 | + } |
| 183 | + return (0); // We looked through everything and didn't find it, |
| 184 | + // but we still need to return a value, so return 0. |
| 185 | +} |
| 186 | + |
| 187 | +``` |
0 commit comments