Advertisement
pleasedontcode

**Color Control** rev_01

Nov 27th, 2024
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: **Color Control**
  13.     - Source Code NOT compiled for: Arduino Uno
  14.     - Source Code created on: 2024-11-27 10:40:23
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* Photoresistor and rgb led with 5 colours */
  21. /****** END SYSTEM REQUIREMENTS *****/
  22.  
  23. /* START CODE */
  24.  
  25. /****** DEFINITION OF LIBRARIES *****/
  26. #include <Arduino.h>
  27. #include <Wire.h>
  28. #include <Adafruit_NeoPixel.h>
  29.  
  30. /****** FUNCTION PROTOTYPES *****/
  31. void setup(void);
  32. void loop(void);
  33. void updateOutputs(); // Added prototype for updateOutputs function
  34. void colours(int R_value, int G_value, int B_value); // Added prototype for colours function
  35.  
  36. /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
  37. const uint8_t Photoresistorandrgbled_LEDRGB_Red_PIN_D2      = 2;
  38. const uint8_t Photoresistorandrgbled_LEDRGB_Green_PIN_D3        = 3;
  39. const uint8_t Photoresistorandrgbled_LEDRGB_Blue_PIN_D4     = 4;
  40.  
  41. // USER CODE PINS
  42. const uint8_t RED_PIN = 9; // Changed variable name for clarity
  43. const uint8_t GREEN_PIN = 10; // Changed variable name for clarity
  44. const uint8_t BLUE_PIN = 11; // Changed variable name for clarity
  45. const uint8_t LDR_PIN = A0; // Changed variable name for clarity
  46.  
  47. /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
  48. /***** used to store raw data *****/
  49. bool    Photoresistorandrgbled_LEDRGB_Red_PIN_D2_rawData        = 0;
  50. bool    Photoresistorandrgbled_LEDRGB_Green_PIN_D3_rawData      = 0;
  51. bool    Photoresistorandrgbled_LEDRGB_Blue_PIN_D4_rawData       = 0;
  52.  
  53. /***** DEFINITION OF OUTPUT PHYSICAL VARIABLES *****/
  54. /***** used to store data after characteristic curve transformation *****/
  55. float   Photoresistorandrgbled_LEDRGB_Red_PIN_D2_phyData        = 0.0;
  56. float   Photoresistorandrgbled_LEDRGB_Green_PIN_D3_phyData      = 0.0;
  57. float   Photoresistorandrgbled_LEDRGB_Blue_PIN_D4_phyData       = 0.0;
  58.  
  59. int LDRvalue = 0; // Added variable for LDR value
  60.  
  61. void setup(void)
  62. {
  63.     // put your setup code here, to run once:
  64.  
  65.     pinMode(Photoresistorandrgbled_LEDRGB_Red_PIN_D2,    OUTPUT);
  66.     pinMode(Photoresistorandrgbled_LEDRGB_Green_PIN_D3,  OUTPUT);
  67.     pinMode(Photoresistorandrgbled_LEDRGB_Blue_PIN_D4,   OUTPUT);
  68.    
  69.     // USER CODE SETUP
  70.     Serial.begin(9600);
  71.     pinMode(RED_PIN, OUTPUT);
  72.     pinMode(BLUE_PIN, OUTPUT);
  73.     pinMode(GREEN_PIN, OUTPUT);  
  74. }
  75.  
  76. void loop(void)
  77. {
  78.     // put your main code here, to run repeatedly:
  79.  
  80.     updateOutputs(); // Refresh output data
  81.  
  82.     // USER CODE LOGIC
  83.     LDRvalue = analogRead(LDR_PIN); // Read the LDR value
  84.  
  85.     if (LDRvalue < 250)
  86.     {
  87.         digitalWrite(RED_PIN, HIGH);
  88.         delay(300);
  89.     }
  90.     else
  91.     {
  92.         digitalWrite(RED_PIN, LOW);
  93.     }
  94.  
  95.     Serial.print("Photoresistor value: ");
  96.     Serial.println(LDRvalue);
  97.     delay(100);
  98.  
  99.     colours(255, 0, 0); // RED
  100.     delay(1000);
  101.     colours(0, 255, 0); // GREEN
  102.     delay(1000);
  103.     colours(0, 0, 255); // BLUE
  104.     delay(1000);
  105.     colours(255, 0, 255); // MAGENTA
  106.     delay(1000);
  107.     colours(255, 255, 0); // YELLOW
  108.     delay(1000);
  109. }
  110.  
  111. void updateOutputs()
  112. {
  113.     digitalWrite(Photoresistorandrgbled_LEDRGB_Red_PIN_D2, Photoresistorandrgbled_LEDRGB_Red_PIN_D2_rawData);
  114.     digitalWrite(Photoresistorandrgbled_LEDRGB_Green_PIN_D3, Photoresistorandrgbled_LEDRGB_Green_PIN_D3_rawData);
  115.     digitalWrite(Photoresistorandrgbled_LEDRGB_Blue_PIN_D4, Photoresistorandrgbled_LEDRGB_Blue_PIN_D4_rawData);
  116. }
  117.  
  118. void colours(int R_value, int G_value, int B_value)  
  119. {
  120.     analogWrite(RED_PIN, R_value);
  121.     analogWrite(GREEN_PIN, G_value);
  122.     analogWrite(BLUE_PIN, B_value);
  123. }
  124.  
  125. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement