Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
|
|
API MODULE
|
|
|
|
Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "espurna.h"
|
|
#include "web.h"
|
|
|
|
#include <functional>
|
|
|
|
#if WEB_SUPPORT && API_SUPPORT
|
|
|
|
#include <ESPAsyncTCP.h>
|
|
#include <ArduinoJson.h>
|
|
|
|
using api_get_callback_f = std::function<void(char * buffer, size_t size)>;
|
|
using api_put_callback_f = std::function<void(const char * payload)> ;
|
|
|
|
void apiRegister(const char * key, api_get_callback_f getFn, api_put_callback_f putFn = nullptr);
|
|
|
|
void apiSetup();
|
|
|
|
#endif // API_SUPPORT == 1
|