Advertisement
pleasedontcode

obstacleavoidingcar rev_01

Nov 19th, 2023
76
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: obstacleavoidingcar
  13.     - Source Code compiled for: Arduino Uno
  14.     - Source Code created on: 2023-11-19 07:29:44
  15.     - Source Code generated by: PARVESH
  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 mybutton_Servomotor_PWMSignal_PIN_D3 = 3;
  34. const uint8_t mybutton_Servomotor_PWMSignal_PIN_D5 = 5;
  35. const uint8_t mybutton_Servomotor_PWMSignal_PIN_D6 = 6;
  36.  
  37. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  38. Servo myservo;
  39. Ultrasonic_Sensor hc(2, 3); // Initialize Ultrasonic Sensor object with TRIGPIN = 2 and ECHOPIN = 3
  40.  
  41. void setup(void)
  42. {
  43.   // put your setup code here, to run once:
  44.   pinMode(mybutton_Servomotor_PWMSignal_PIN_D3, OUTPUT);
  45.   pinMode(mybutton_Servomotor_PWMSignal_PIN_D5, OUTPUT);
  46.   pinMode(mybutton_Servomotor_PWMSignal_PIN_D6, OUTPUT);
  47.  
  48.   myservo.attach(mybutton_Servomotor_PWMSignal_PIN_D3);
  49.   hc.begin(); // Initialize the Ultrasonic Sensor
  50. }
  51.  
  52. void loop(void)
  53. {
  54.   // put your main code here, to run repeatedly:
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement