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: Analog Communication
- - Source Code NOT compiled for: Arduino Uno
- - Source Code created on: 2024-05-20 09:21:25
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* I am using Arduino uno for a project The project */
- /* idea is I'm going to send an audio signal through */
- /* the Arduino uno and take output through it. The */
- /* function is whatever the signal audio signal is */
- /* given the output must me in the decibel which I */
- /* will */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF ANALOG INPUT PINS *****/
- const uint8_t potentiometer_Potentiometer_Vout_PIN_A0 = A0;
- const uint8_t potentiometer_Potentiometer_Vout_PIN_A1 = A1;
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(potentiometer_Potentiometer_Vout_PIN_A0, INPUT);
- pinMode(potentiometer_Potentiometer_Vout_PIN_A1, INPUT);
- // Initialize serial communication
- Serial.begin(9600);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Read analog input values
- int sensorValue_A0 = analogRead(potentiometer_Potentiometer_Vout_PIN_A0);
- int sensorValue_A1 = analogRead(potentiometer_Potentiometer_Vout_PIN_A1);
- // Print the sensor values to the serial monitor
- Serial.print("Sensor Value A0: ");
- Serial.println(sensorValue_A0);
- Serial.print("Sensor Value A1: ");
- Serial.println(sensorValue_A1);
- // Delay for readability
- delay(1000);
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement