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: Bluetooth Integration
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-08 13:40:01
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* scan for low energy bluetooth peripherals */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <SoftwareSerial.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF Software Serial *****/
- const uint8_t BLE_HC05_mySerial_PIN_SERIAL_TX = A2;
- const uint8_t BLE_HC05_mySerial_PIN_SERIAL_RX = A3;
- SoftwareSerial BLE_HC05_mySerial(BLE_HC05_mySerial_PIN_SERIAL_RX, BLE_HC05_mySerial_PIN_SERIAL_TX);
- void setup(void)
- {
- // put your setup code here, to run once:
- BLE_HC05_mySerial.begin(9600);
- // Scan for low energy Bluetooth peripherals
- // Add your code here to scan for BLE peripherals
- // /****** SYSTEM REQUIREMENTS *****/
- // /****** SYSTEM REQUIREMENT 1 *****/
- // /* scan for low energy bluetooth peripherals */
- // /****** END SYSTEM REQUIREMENTS *****/
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Add your code here to handle other tasks
- // Example:
- // Check if there is data available from the BLE peripheral
- if (BLE_HC05_mySerial.available())
- {
- // Read the data from the BLE peripheral
- char data = BLE_HC05_mySerial.read();
- // Add your code here to process the data from the BLE peripheral
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement