Advertisement
pleasedontcode

Scanner rev_171

Nov 19th, 2023
68
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: Scanner
  13.     - Source Code compiled for: Arduino Uno
  14.     - Source Code created on: 2023-11-19 12:14:49
  15.     - Source Code generated by: AlexWind
  16.  
  17. ********* Pleasedontcode.com **********/
  18. /****** DEFINITION OF LIBRARIES *****/
  19. #include <Arduino.h>
  20. #include <Servo.h>
  21. #include "Ultrasonic-distance-sensor-easyC-SOLDERED.h"
  22.  
  23. /****** SYSTEM REQUIREMENT 1 *****/
  24. /* when something in front ultrasonic sensor senses */
  25. /* it and then the servo motor rotates and moves to */
  26. /* space where no obstacle is present */
  27.  
  28. /****** FUNCTION PROTOTYPES *****/
  29. void setup(void);
  30. void loop(void);
  31.  
  32. /***** DEFINITION OF PWM OUTPUT PINS *****/
  33. const uint8_t servo_Servomotor_PWMSignal_PIN_D3 = 3;
  34.  
  35. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  36. Servo myservo;
  37. Ultrasonic_Sensor ultrasonicSensor;
  38.  
  39. void setup(void)
  40. {
  41.   // put your setup code here, to run once:
  42.   pinMode(servo_Servomotor_PWMSignal_PIN_D3, OUTPUT);
  43.  
  44.   // Attach the servo to the pin
  45.   myservo.attach(servo_Servomotor_PWMSignal_PIN_D3);
  46.  
  47.   // Initialize the ultrasonic sensor
  48.   ultrasonicSensor.begin();
  49. }
  50.  
  51. void loop(void)
  52. {
  53.   // put your main code here, to run repeatedly:
  54.  
  55.   // Read the distance from the ultrasonic sensor
  56.   uint16_t distance = ultrasonicSensor.getDistance();
  57.  
  58.   // Check if an obstacle is detected
  59.   if (distance < 20)
  60.   {
  61.     // Rotate the servo to move to a space where no obstacle is present
  62.     myservo.write(90);
  63.   }
  64.   else
  65.   {
  66.     // Rotate the servo to the initial position
  67.     myservo.write(0);
  68.   }
  69.  
  70.   // Delay for a short period
  71.   delay(100);
  72. }
  73.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement