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: "Digital Setup"
- - Source Code compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-01-16 00:20:08
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* if button is pressed so set out to 128. */
- /****** SYSTEM REQUIREMENT 2 *****/
- /* read gps from spi and generate sinusoide signal if */
- /* position is moving. */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h>
- #include <DS18B20.h>
- #include <SPI.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void updateOutputs(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t butt_PushButton_PIN_D4 = 4;
- const uint8_t ditpullup_PIN_D14 = 14;
- const uint8_t ditpulldown_PIN_D16 = 16;
- const uint8_t temp_DS18B20_DQ_PIN_D13 = 13;
- /***** DEFINITION OF DAC OUTPUT PINS *****/
- const uint8_t out_PIN_D25 = 25;
- /***** DEFINITION OF OUTPUT RAW VARIABLES *****/
- /***** used to store raw data *****/
- uint8_t out_PIN_D25_rawData = 0;
- /***** DEFINITION OF OUTPUT PHYSICAL VARIABLES *****/
- /***** used to store data after characteristic curve transformation *****/
- float out_PIN_D25_phyData = 0.0;
- /****** DEFINITION OF LIBRARY CLASS INSTANCES *****/
- EasyButton butt_PushButton(butt_PushButton_PIN_D4, true);
- DS18B20 tempSensor(temp_DS18B20_DQ_PIN_D13);
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(butt_PushButton_PIN_D4, INPUT_PULLUP);
- pinMode(ditpullup_PIN_D14, INPUT_PULLUP);
- pinMode(ditpulldown_PIN_D16, INPUT_PULLDOWN);
- pinMode(temp_DS18B20_DQ_PIN_D13, INPUT);
- // Initialize the button
- butt_PushButton.begin();
- // Initialize SPI for GPS communication
- SPI.begin();
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- butt_PushButton.read();
- // Check if the button is pressed
- if (butt_PushButton.isPressed()) {
- out_PIN_D25_rawData = 128; // Set output to 128
- } else {
- out_PIN_D25_rawData = 0; // Set output to 0
- }
- // Read GPS data from SPI and check for movement
- // If position is moving, generate sinusoidal signal
- // Update the outputs
- updateOutputs();
- }
- void updateOutputs(void)
- {
- dacWrite(out_PIN_D25, out_PIN_D25_rawData);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement