ESPTerm - ESP8266 terminal emulator. Branches: [master] patches, [work] next release
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.
|
|
|
//
|
|
|
|
// Created by MightyPork on 2017/10/01.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ESPTERM_API_H
|
|
|
|
#define ESPTERM_API_H
|
|
|
|
|
|
|
|
// TODO use X-MACRO for access restrictions etc
|
|
|
|
|
|
|
|
#define API_D2D_MSG "/api/v1/msg"
|
|
|
|
#define API_REBOOT "/api/v1/reboot"
|
|
|
|
#define API_PING "/api/v1/ping"
|
|
|
|
#define API_CLEAR "/api/v1/clear"
|
|
|
|
#define API_GPIO "/api/v1/gpio"
|
|
|
|
|
|
|
|
#endif //ESPTERM_API_H
|