< Include for TCP server More...
#include <WifiMaster.h>
Public Member Functions | |
WifiMaster (GloveModel gloveModel) | |
Constructs a WifiMaster object with a given glove model. | |
void | setup () |
Standard setup function for the Wi-Fi master. | |
void | loop () |
Standard loop function for the Wi-Fi master. | |
void | sendVectorToSlave (const std::vector< int > &reorderedValues, const ChordingScheme status, int repeat) |
Sends a vector to the slave device, including a repeat count for longer patterns. | |
void | sendVectorToSlave (const std::vector< int > &reorderedValues, const ChordingScheme status) |
Sends a vector to the slave device for a short pattern (no repeat). | |
< Include for TCP server
This class handles the communication and Wi-Fi functionality for the master device, including website setup, response handling, and communication between the master and slave devices.
WifiMaster::WifiMaster | ( | GloveModel | gloveModel | ) |
Constructs a WifiMaster object with a given glove model.
gloveModel | The glove model to be used for actuator control and pattern execution. |
void WifiMaster::loop | ( | ) |
Standard loop function for the Wi-Fi master.
Continuously handles communication and controls actuators.
void WifiMaster::sendVectorToSlave | ( | const std::vector< int > & | reorderedValues, |
const ChordingScheme | status ) |
Sends a vector to the slave device for a short pattern (no repeat).
reorderedValues | The vector of reordered values representing the pattern. |
status | The current chording scheme status. |
void WifiMaster::sendVectorToSlave | ( | const std::vector< int > & | reorderedValues, |
const ChordingScheme | status, | ||
int | repeat ) |
Sends a vector to the slave device, including a repeat count for longer patterns.
reorderedValues | The vector of reordered values representing the pattern. |
status | The current chording scheme status. |
repeat | The number of times to repeat the pattern if it is long. |
void WifiMaster::setup | ( | ) |
Standard setup function for the Wi-Fi master.
Sets up Wi-Fi, ESP-NOW, and the web server.