Skip to content

The HYPERWISOR_IOT library is designed to simplify the process of integrating IoT capabilities into your Arduino projects. It provides a convenient interface for communicating with IoT platforms and sending sensor data to remote servers.

License

Notifications You must be signed in to change notification settings

deven322/HYPERWISOR_IOT_Extended

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HYPERWISOR_IOT Arduino Library

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.

www.hyperwisor.com/dashboard

Key Features

  • 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.

Getting Started

  1. Install the library in your Arduino IDE using the Library Manager or download the ZIP file from the releases section.
  2. Include the library in your sketches using #include <HYPERWISOR_IOT.h>.
  3. Create an instance of the HYPERWISOR_IOT class and provide your API key.
  4. 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.

Example Usage

#include <WiFi.h>
#include <HYPERWISOR_IOT.h>

const char* ssid = "YourWiFiSSID";
const char* password = "YourWiFiPassword";
const String apiKey = "YourAPIKey";

HYPERWISOR_IOT httpController(apiKey);

void setup() {
  // Initialize WiFi and establish connection
}

void loop() {
  if (WiFi.status() == WL_CONNECTED) {
    // Read sensor data and send to the server
    String sensorData = // Create sensor data string
    String response = httpController.sendData(sensorData);
    // Process the response
  }
}

Contributing

Contributions are welcome! If you encounter any issues or have suggestions for improvements, feel free to open an issue or submit a pull request.

License

This project is licensed under Apache License 2.0 https://github.com/mayurtechnologys/HYPERWISOR_IOT/blob/511caaf0d2267d92be917e6460ba3d8986f8f686/Licence.md


About

The HYPERWISOR_IOT library is designed to simplify the process of integrating IoT capabilities into your Arduino projects. It provides a convenient interface for communicating with IoT platforms and sending sensor data to remote servers.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%