#include <Arduino.h>
const int numLDRs = 6; // Number of LDRs
const int ldrPins[] = {A0, A1, A2, A3, A4, A5}; // Analog pins for LDRs
// Calibration data for each LDR
const int calibrationValues[] = {100, 200, 300, 400, 500, 600}; // Lux values at analogRead = 500
// Constants for automatic calibration
const int calibrationSamples = 100; // Number of samples for calibration
int calibrationThreshold = 500; // Initial threshold for calibration
int calibrationDelay = 5000; // Delay for calibration in milliseconds
void setup() {
Serial.begin(9600); // Initialize serial communication
// Set up LDR pins as inputs
for (int i = 0; i < numLDRs; i++) {
pinMode(ldrPins[i], INPUT);
}
}
// Function to convert analog reading to lux value
float analogToLux(int analogValue, int calibrationValue) {
// You need to determine the formula based on LDR characteristics
// This is a simple linear approximation
float lux = analogValue * (calibrationValue / 500.0); // Adjust 500 as your reference value
return lux;
}
// Function to perform automatic calibration
void autoCalibrate() {
Serial.println("Starting automatic calibration...");
int calibrationSum = 0;
for (int i = 0; i < calibrationSamples; i++) {
for (int j = 0; j < numLDRs; j++) {
calibrationSum += analogRead(ldrPins[j]);
}
delay(10); // Delay between samples
}
calibrationThreshold = calibrationSum / (calibrationSamples * numLDRs);
Serial.print("Calibration complete. Threshold set to: ");
Serial.println(calibrationThreshold);
Serial.println("Place objects to calibrate ambient light levels.");
delay(calibrationDelay);
}
void loop() {
// Check for automatic calibration button press (e.g., a physical button)
// If the button is pressed, perform auto-calibration
// This is just a placeholder for the button press detection.
// You may need to implement the button detection mechanism.
if (digitalRead(2) == HIGH) { // Change to the actual pin you're using for the button
autoCalibrate();
}
// Read the LDR values and display lux values
for (int i = 0; i < numLDRs; i++) {
int ldrValue = analogRead(ldrPins[i]);
float luxValue = analogToLux(ldrValue, calibrationValues[i]);
Serial.print("Plate ");
Serial.print(i + 1);
Serial.print(": ");
Serial.print(luxValue, 2); // Display lux values with two decimal places
Serial.println(" Lux");
}
delay(1000); // Delay to prevent rapid readings (adjust as needed)
}
// BINARY BITS VALUE IN 6 PLATES
// const int numLDRs = 6; // Number of LDRs
// const int ldrPins[] = {A0, A1, A2, A3, A4, A5}; // Analog pins for LDRs
// void setup() {
// Serial.begin(9600); // Initialize serial communication
// // Set up LDR pins as inputs
// for (int i = 0; i < numLDRs; i++) {
// pinMode(ldrPins[i], INPUT);
// }
// }
// void loop() {
// // Read the LDR values and display 1 or 0 based on light detection
// for (int i = 0; i < numLDRs; i++) {
// int ldrValue = analogRead(ldrPins[i]);
// if (ldrValue > 500) { // You may need to adjust this threshold value
// Serial.print("Plate ");
// Serial.print(i + 1);
// Serial.println(": 1");
// } else {
// Serial.print("Plate ");
// Serial.print(i + 1);
// Serial.println(": 0");
// }
// }
// delay(1000); // Delay to prevent rapid readings (adjust as needed)
// }
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
ldr1:VCC
ldr1:GND
ldr1:DO
ldr1:AO
ldr3:VCC
ldr3:GND
ldr3:DO
ldr3:AO
ldr4:VCC
ldr4:GND
ldr4:DO
ldr4:AO
ldr5:VCC
ldr5:GND
ldr5:DO
ldr5:AO
ldr6:VCC
ldr6:GND
ldr6:DO
ldr6:AO
ldr7:VCC
ldr7:GND
ldr7:DO
ldr7:AO
led1:A
led1:C
led2:A
led2:C
led3:A
led3:C
led4:A
led4:C
led5:A
led5:C
led6:A
led6:C
sw1:1
sw1:2
sw1:3
sw3:1
sw3:2
sw3:3
sw4:1
sw4:2
sw4:3
sw5:1
sw5:2
sw5:3
sw6:1
sw6:2
sw6:3
sw7:1
sw7:2
sw7:3
lcd1:GND
lcd1:VCC
lcd1:SDA
lcd1:SCL
lcd2:GND
lcd2:VCC
lcd2:SDA
lcd2:SCL
lcd3:GND
lcd3:VCC
lcd3:SDA
lcd3:SCL
lcd4:GND
lcd4:VCC
lcd4:SDA
lcd4:SCL
ntc1:GND
ntc1:VCC
ntc1:OUT
ntc2:GND
ntc2:VCC
ntc2:OUT
ntc3:GND
ntc3:VCC
ntc3:OUT
ntc4:GND
ntc4:VCC
ntc4:OUT
ntc5:GND
ntc5:VCC
ntc5:OUT