The HYPERWISOR_IOT library simplifies the integration of IoT capabilities into your Arduino projects, making it easier than ever to communicate with IoT platforms and send sensor data to remote servers. Whether you're working on a home automation system, industrial monitoring, or any IoT application, this library streamlines data transmission and interaction with cloud services.
- HTTP Communication: Seamlessly send and receive data using HTTP requests, enabling smooth interaction with IoT platforms and web services.
- Sensor Data Management: Easily read and process sensor data, allowing you to monitor various environmental parameters.
- Device Status Retrieval: Fetch device status information from the server for real-time monitoring and diagnostics.
- Customizable and Expandable: Adapt and extend the library to meet the specific requirements of your IoT project.
- Install the library in your Arduino IDE using the Library Manager or download the ZIP file from the releases section.
- Include the library in your sketches using
#include <HYPERWISOR_IOT.h>
. - Create an instance of the
HYPERWISOR_IOT
class and provide your API key. - Utilize the library's functions to send data, retrieve sensor readings, and manage device status.
For detailed documentation and usage examples, visit the wiki of this repository.
#include <WiFi.h>
#include <HYPERWISOR_IOT.h>
const char* ssid = "YourWiFiSSID";
const char* password = "YourWiFiPassword";
const String apiKey = "YourAPIKey";
HYPERWISOR_IOT Yourproductname;
void setup() {
Serial.begin(115200);
Yourproductname.init(apikey);
// Connect to Wi-Fi
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected to WiFi!");
// Initialize the HYPERWISOR_IOT library
Yourproductname.init(apiKey);
}
void loop() {
// Check if connected to WiFi
if (WiFi.status() == WL_CONNECTED) {
// Read sensor data (replace with actual sensor data)
String sensorData = "temperature=25&humidity=50";
// Send sensor data to the server
String response = Yourproductname.sendData(sensorData);
// Process the response
Serial.println("Server Response: " + response);
// Get and print sensor data from the server
String serverSensorData = Yourproductname.getsensordata();
Serial.println("Sensor Data from Server: " + serverSensorData);
// Get and print schema from the server
String serverSchema = Yourproductname.get_schema();
Serial.println("Schema from Server: " + serverSchema);
// ... add more functionality as needed
delay(5000); // Adjust the delay as per your requirements
} else {
Serial.println("Not connected to WiFi. Please check your connection.");
delay(1000);
}
}
Contributions are welcome! If you encounter any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.
This project is licensed under Apache License 2.0 https://github.com/mayurtechnologys/HYPERWISOR_IOT/blob/511caaf0d2267d92be917e6460ba3d8986f8f686/Licence.md