* feat(openthread): adds native api * feat(openthread): adds source code to CMakeLists.txt * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
47 lines
1.6 KiB
C++
47 lines
1.6 KiB
C++
// Copyright 2025 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
/*
|
|
* OpenThread.begin() will automatically start a node in a Thread Network
|
|
* If NVS is empty, default configuration will be as follow:
|
|
*
|
|
* NETWORK_NAME "OpenThread-ESP"
|
|
* MESH_LOCAL_PREFIX "fd00:db8:a0:0::/64"
|
|
* NETWORK_CHANNEL 15
|
|
* NETWORK_PANID 0x1234
|
|
* NETWORK_EXTPANID "dead00beef00cafe"
|
|
* NETWORK_KEY "00112233445566778899aabbccddeeff"
|
|
* NETWORK_PSKC "104810e2315100afd6bc9215a6bfac53"
|
|
*
|
|
* If NVS has already a dataset information, it will load it from there.
|
|
*/
|
|
|
|
#include "OThreadCLI.h"
|
|
#include "OThreadCLI_Util.h"
|
|
|
|
// The first device to start Thread will be the Leader
|
|
// Next devices will be Router or Child
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
OThread.begin(); // AutoStart using Thread default settings
|
|
OThreadCLI.begin();
|
|
OThread.otPrintNetworkInformation(Serial); // Print Current Thread Network Information
|
|
}
|
|
|
|
void loop() {
|
|
Serial.print("Thread Node State: ");
|
|
Serial.println(OThread.otGetStringDeviceRole());
|
|
delay(5000);
|
|
}
|