90
www.keyestudio.com
*/
int analogInPin = A1;
// Analog input pin that the photocell is
attached to
int analogOutPin = 10; // Analog output pin that the LED is
attached to
int sensorValue = 0;
// value read from the pot
int outputValue = 0;
// value output to the PWM (analog
out)
void setup() {
Serial.begin(9600);
}
void loop() {
// read the analog in value:
sensorValue = analogRead(analogInPin);
// map it to the range of the analog out:
outputValue = map(sensorValue, 0, 1023, 0, 255);
// change the analog out value:
analogWrite(analogOutPin, outputValue);
// wait 2 milliseconds before the next loop for the
analog-to-digital
// converter to settle after the last reading:
Serial.println(sensorValue);
//serial port prints the value of
photoresistor
Summary of Contents for Ks0428
Page 21: ...21 www keyestudio com...
Page 24: ...24 www keyestudio com...
Page 27: ...27 www keyestudio com...
Page 29: ...29 www keyestudio com Step 6 Install Sensors and Boards...
Page 31: ...31 www keyestudio com...
Page 32: ...32 www keyestudio com Step 7 Hook up Guide...
Page 33: ...33 www keyestudio com...
Page 34: ...34 www keyestudio com...
Page 35: ...35 www keyestudio com Step 8 Wire Up LED Panel...
Page 37: ...37 www keyestudio com...
Page 38: ...38 www keyestudio com...
Page 39: ...39 www keyestudio com...
Page 40: ...40 www keyestudio com...
Page 41: ...41 www keyestudio com...
Page 42: ...42 www keyestudio com...
Page 54: ...54 www keyestudio com...
Page 58: ...58 www keyestudio com 5 Arduino IDE Setting Click icon open Arduino IDE...
Page 63: ...63 www keyestudio com Click to start compiling the program check errors...
Page 72: ...72 www keyestudio com Connection Diagram Seen from the above diagram LED is linked with D2...
Page 103: ...103 www keyestudio com 5 Connection Diagram...
Page 126: ...126 www keyestudio com 8 Click Read Notify WriteWithoutResponse to enter the following page...
Page 172: ...172 www keyestudio com 2 Flow chart 3 Connection Diagram...
Page 182: ...182 www keyestudio com 2 Flow chart 3 Connection Diagram...
Page 210: ...210 www keyestudio com 3 Connection Diagram...
Page 223: ...223 www keyestudio com Attention Confirm that every component is connected...
Page 225: ...225 www keyestudio com Servo Motor Brown Wire Gnd G Red Wire 5v V Orange Wire 9...
Page 227: ...227 www keyestudio com IR Receiver Module Sensor Shield G GND V VCC S A0...