103 lines
3.2 KiB
Arduino
103 lines
3.2 KiB
Arduino
// Copyright 2024 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.
|
|
|
|
/**
|
|
* @brief This example demonstrates simple Zigbee light bulb.
|
|
*
|
|
* The example demonstrates how to use Zigbee library to create a end device light bulb.
|
|
* The light bulb is a Zigbee end device, which is controlled by a Zigbee coordinator.
|
|
*
|
|
* Proper Zigbee mode must be selected in Tools->Zigbee mode
|
|
* and also the correct partition scheme must be selected in Tools->Partition Scheme.
|
|
*
|
|
* Please check the README.md for instructions and more detailed description.
|
|
*
|
|
* Created by Jan Procházka (https://github.com/P-R-O-C-H-Y/)
|
|
*/
|
|
|
|
#ifndef ZIGBEE_MODE_ED
|
|
#error "Zigbee end device mode is not selected in Tools->Zigbee mode"
|
|
#endif
|
|
|
|
#include "Zigbee.h"
|
|
|
|
#define LED_PIN RGB_BUILTIN
|
|
#define BUTTON_PIN 9 // ESP32-C6/H2 Boot button
|
|
#define ZIGBEE_LIGHT_ENDPOINT 10
|
|
|
|
ZigbeeLight zbLight = ZigbeeLight(ZIGBEE_LIGHT_ENDPOINT);
|
|
|
|
/********************* RGB LED functions **************************/
|
|
void setLED(bool value) {
|
|
digitalWrite(LED_PIN, value);
|
|
}
|
|
|
|
/********************* Arduino functions **************************/
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
while (!Serial) {
|
|
delay(10);
|
|
}
|
|
// Init LED and turn it OFF (if LED_PIN == RGB_BUILTIN, the rgbLedWrite() will be used under the hood)
|
|
pinMode(LED_PIN, OUTPUT);
|
|
digitalWrite(LED_PIN, LOW);
|
|
|
|
// Init button for factory reset
|
|
pinMode(BUTTON_PIN, INPUT_PULLUP);
|
|
|
|
//Optional: set Zigbee device name and model
|
|
zbLight.setManufacturerAndModel("Espressif", "ZBLightBulb");
|
|
|
|
// Set callback function for light change
|
|
zbLight.onLightChange(setLED);
|
|
|
|
//Add endpoint to Zigbee Core
|
|
Serial.println("Adding ZigbeeLight endpoint to Zigbee Core");
|
|
Zigbee.addEndpoint(&zbLight);
|
|
|
|
// When all EPs are registered, start Zigbee. By default acts as ZIGBEE_END_DEVICE
|
|
if (!Zigbee.begin()) {
|
|
Serial.println("Zigbee failed to start!");
|
|
Serial.println("Rebooting...");
|
|
ESP.restart();
|
|
}
|
|
Serial.println("Connecting to network");
|
|
while (!Zigbee.connected()) {
|
|
Serial.print(".");
|
|
delay(100);
|
|
}
|
|
Serial.println();
|
|
}
|
|
|
|
void loop() {
|
|
// Checking button for factory reset
|
|
if (digitalRead(BUTTON_PIN) == LOW) { // Push button pressed
|
|
// Key debounce handling
|
|
delay(100);
|
|
int startTime = millis();
|
|
while (digitalRead(BUTTON_PIN) == LOW) {
|
|
delay(50);
|
|
if ((millis() - startTime) > 3000) {
|
|
// If key pressed for more than 3secs, factory reset Zigbee and reboot
|
|
Serial.println("Resetting Zigbee to factory and rebooting in 1s.");
|
|
delay(1000);
|
|
Zigbee.factoryReset();
|
|
}
|
|
}
|
|
// Toggle light by pressing the button
|
|
zbLight.setLight(!zbLight.getLightState());
|
|
}
|
|
delay(100);
|
|
}
|