Advertisement
pleasedontcode

Scanner rev_175

Nov 20th, 2023
51
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-20 12:08:00
  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(2, 3); // Replace with appropriate constructor arguments
  38.  
  39. void setup(void)
  40. {
  41.   // put your setup code here, to run once:
  42.   pinMode(servo_Servomotor_PWMSignal_PIN_D3, OUTPUT);
  43.   myservo.attach(servo_Servomotor_PWMSignal_PIN_D3);
  44. }
  45.  
  46.  
  47. void loop(void)
  48. {
  49.   // put your main code here, to run repeatedly:
  50.  
  51.   // Check if there is an obstacle in front of the ultrasonic sensor
  52.   if (ultrasonicSensor.takeMeasure() == 0) {
  53.     // Obstacle detected, rotate the servo motor to find a space without obstacles
  54.  
  55.     // Rotate the servo motor from 0 to 180 degrees
  56.     for (int pos = 0; pos <= 180; pos += 1) {
  57.       myservo.write(pos);
  58.       delay(15);
  59.     }
  60.  
  61.     // Rotate the servo motor back from 180 to 0 degrees
  62.     for (int pos = 180; pos >= 0; pos -= 1) {
  63.       myservo.write(pos);
  64.       delay(15);
  65.     }
  66.   }
  67. }
  68.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement