mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-23 21:50:55 +01:00
64 lines
1.9 KiB
C++
64 lines
1.9 KiB
C++
#include "NimBLEDevice.h"
|
|
#include "driver/gpio.h"
|
|
|
|
extern "C" {void app_main(void);}
|
|
|
|
#define SERVICE_UUID "4fafc201-1fb5-459e-8fcc-c5c9c331914b"
|
|
|
|
// LED pins
|
|
#define LEDR GPIO_NUM_16
|
|
#define LEDG GPIO_NUM_17
|
|
#define LEDB GPIO_NUM_18
|
|
#define OUTPUT_PIN (1ULL<<LEDG)
|
|
|
|
static uint8_t onOffVal = 0;
|
|
static int16_t levelVal = 0;
|
|
|
|
class onOffSrvModelCallbacks : public NimBLEMeshModelCallbacks {
|
|
void setOnOff(NimBLEMeshModel *pModel, uint8_t val) {
|
|
printf("on/off set val %d, transition time: %dms\n", val, pModel->getTransTime());
|
|
onOffVal = val;
|
|
gpio_set_level(LEDG, !onOffVal);
|
|
}
|
|
|
|
uint8_t getOnOff(NimBLEMeshModel *pModel) {
|
|
printf("on/off get val %d\n", onOffVal);
|
|
return onOffVal;
|
|
}
|
|
};
|
|
|
|
class levelSrvModelCallbacks : public NimBLEMeshModelCallbacks {
|
|
void setLevel(NimBLEMeshModel *pModel, int16_t val) {
|
|
printf("Level set val %d, transition time: %dms\n", val, pModel->getTransTime());
|
|
levelVal = val;
|
|
}
|
|
|
|
int16_t getLevel(NimBLEMeshModel *pModel) {
|
|
printf("Level get val %d\n", levelVal);
|
|
return levelVal;
|
|
}
|
|
};
|
|
|
|
|
|
void app_main(void) {
|
|
gpio_config_t io_conf;
|
|
io_conf.intr_type = (gpio_int_type_t)GPIO_PIN_INTR_DISABLE;
|
|
io_conf.mode = GPIO_MODE_OUTPUT;
|
|
io_conf.pin_bit_mask = OUTPUT_PIN;
|
|
io_conf.pull_down_en = (gpio_pulldown_t)0;
|
|
io_conf.pull_up_en = (gpio_pullup_t)0;
|
|
gpio_config(&io_conf);
|
|
gpio_set_level(LEDG, 1);
|
|
|
|
NimBLEDevice::init("");
|
|
NimBLEMeshNode *pMesh = NimBLEDevice::createMeshNode(NimBLEUUID(SERVICE_UUID),0);
|
|
NimBLEMeshElement* pElem = pMesh->getElement();
|
|
NimBLEMeshModel* pModel = pElem->createModel(BT_MESH_MODEL_ID_GEN_ONOFF_SRV, new onOffSrvModelCallbacks());
|
|
pModel->setValue(onOffVal);
|
|
|
|
//pElem = pMesh->createElement();
|
|
pModel = pElem->createModel(BT_MESH_MODEL_ID_GEN_LEVEL_SRV, new levelSrvModelCallbacks());
|
|
pModel->setValue(levelVal);
|
|
pMesh->start();
|
|
printf("Mesh Started");
|
|
}
|