Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: Ai
- - Source Code compiled for: Arduino Nano
- - Source Code created on: 2023-10-20 12:53:41
- - Source Code generated by: Upwork
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* I want to create a bot which automatically turns on/off */
- /* the light when a person is in the room. So the light */
- /* should automatically turn on when a person is present */
- /* in the room and turn off when there is no person. */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void turnOnLight(void);
- void turnOffLight(void);
- bool isPersonPresent(void);
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t boot_LEDRGB_Red_PIN_D2 = 2; // Pin for red LED
- const uint8_t boot_LEDRGB_Green_PIN_D3 = 3; // Pin for green LED
- const uint8_t boot_LEDRGB_Blue_PIN_D4 = 4; // Pin for blue LED
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(boot_LEDRGB_Red_PIN_D2, OUTPUT);
- pinMode(boot_LEDRGB_Green_PIN_D3, OUTPUT);
- pinMode(boot_LEDRGB_Blue_PIN_D4, OUTPUT);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- if (isPersonPresent()) {
- turnOnLight();
- } else {
- turnOffLight();
- }
- }
- void turnOnLight(void)
- {
- digitalWrite(boot_LEDRGB_Red_PIN_D2, HIGH);
- digitalWrite(boot_LEDRGB_Green_PIN_D3, HIGH);
- digitalWrite(boot_LEDRGB_Blue_PIN_D4, HIGH);
- }
- void turnOffLight(void)
- {
- digitalWrite(boot_LEDRGB_Red_PIN_D2, LOW);
- digitalWrite(boot_LEDRGB_Green_PIN_D3, LOW);
- digitalWrite(boot_LEDRGB_Blue_PIN_D4, LOW);
- }
- bool isPersonPresent(void)
- {
- // Add your code to check if a person is present in the room
- // Return true if a person is present, false otherwise
- // You can use sensors like PIR motion sensor or ultrasonic sensor to detect presence
- // Example code: return digitalRead(pirSensorPin) == HIGH;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement