Using ESP32 Wi-Fi module on WIRESS CAMERA SHIELD for GR-PEACH
This page describes the setting for using ESP32 Wi-Fi module on WIRELESS CAMERA SHIELD for GR-PEACH.
Import driver
Import the ESP32 library into your project: https://github.com/ARMmbed/esp32-driver
For Mbed CLI, run this command
$ mbed add https://github.com/ARMmbed/esp32-driver
Setting
Set these parameters in your mbed_app.json.
"target_overrides": {
...
"RZ_A1H": {
...
"nsapi.default-wifi-ssid" : "\"SSID\"",
"nsapi.default-wifi-password" : "\"PASSWORD\""
"target.extra_labels_add" : ["ESP32_DRIVER"],
"target.network-default-interface-type" : "WIFI",
"esp32.provide-default" : true,
...
},
...
}
Please log in to post comments.
