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: "Arduino Parking"
- - Source Code compiled for: Arduino Nano
- - Source Code created on: 2023-12-21 22:00:34
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* I’m building a parking sensor. which beeps more */
- /* often the closer it is to an object. Here is the */
- /* parts I’m going to use for this reciever: An */
- /* Arduino nan */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <Ultrasonic.h>
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* I’m building a parking sensor. which beeps more */
- /* often the closer it is to an object. Here is the */
- /* parts I’m going to use for this reciever: An */
- /* Arduino nan */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t Sensor_HC_SR04_Echo_PIN_D3 = 3;
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t Sensor_HC_SR04_Trigger_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- Ultrasonic ultrasonic(Sensor_HC_SR04_Trigger_PIN_D2, Sensor_HC_SR04_Echo_PIN_D3);
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(Sensor_HC_SR04_Echo_PIN_D3, INPUT);
- pinMode(Sensor_HC_SR04_Trigger_PIN_D2, OUTPUT);
- Serial.begin(9600); // Initialize serial communication
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- unsigned int distance = ultrasonic.read();
- // Print the distance in centimeters
- Serial.print("Distance: ");
- Serial.print(distance);
- Serial.println(" cm");
- delay(1000);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement