-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesp8266.ino
38 lines (33 loc) · 940 Bytes
/
esp8266.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* @file esp8266.ino
* @brief Arduino code for communication with the WIFi module.
* @author Samreen Ansari
*
* This code initializes a I2C Communication between the Arduino and the
* ESP8266. The ESP8266 sends data to the Arduino and requests data from the
* Arduino.
*/
#include "src/primary/Primary.h"
Primary primaryDevice;
const int LED_PIN = LED_BUILTIN;
/**
* @brief Initializes the ESP8266 primary WiFi module.
*
* This function initializes the I2C communication with the secondary device.
*/
void setup() {
Serial.begin(115200);
primaryDevice.initialize_i2c();
}
/**
* @brief The main loop of the ESP8266 primary WiFi module.
*
* This function is called repeatedly send data to the secondary device,
* and request data from the device.
*/
void loop() {
primaryDevice.request_data_from_secondary();
delay(1000);
primaryDevice.send_data_to_secondary("from primary to secondary!");
delay(1000);
}