Specially designed C++ library for IoTaaP's core functionalities
Control onboard accessories with one line of code.
Join the community and create new library functionality.
Build your concept in minutes with only few lines of code.
Access all IoTaaP core features using only a few lines of code, and focus on your project.
The object-oriented library gives you the possibility to port your code to the multiple hardware.
We have encapsulated various 3rd party libraries to minimize configuration.
Our libraries are supported by code completion tool that is built into Microsoft Visual Studio.
Our Core Library is an object-oriented C++ library made to be used with IoTaaP development hardware and PlatformIO ecosystem. Core Library easily integrates with 3rd party libraries and resources in order to give you flexibility in development.
iotaap.oled.init();
iotaap.oled.showText("Scanning...");
int numOfAP = iotaap.wifi.scan();
String networks = "Available networks:\n\n";
for (int i = 0; i < numOfAP; i++){
networks += String(i + 1) + ". " + iotaap.wifi.getScanned(i) + "\n";
}
iotaap.oled.showText(networks);