252 added delete function in items list

This commit is contained in:
Dmitry Borisenko
2020-10-10 01:44:11 +03:00
parent 8bf136373c
commit 54841d59cf
34 changed files with 142 additions and 273 deletions

View File

@@ -2,7 +2,7 @@
//=================Firmeare=================
#define FIRMWARE_NAME "esp8266-iotm"
#define FIRMWARE_VERSION 251
#define FIRMWARE_VERSION 252
#define FLASH_4MB true
//=================System===================
@@ -87,6 +87,8 @@ enum notAsincActions {
do_MQTTUDP,
do_BUSSCAN,
do_MQTTPARAMSCHANGED,
do_deviceInit,
do_delChoosingItems,
do_LAST,
};

View File

@@ -3,7 +3,9 @@
#include <Arduino.h>
#include "Global.h"
extern void itemsListInit();
extern void addItem(String name);
extern void delChoosingItems();
extern void delAllItems();
extern uint8_t getNewElementNumber(String file);
extern uint8_t getFreePinAll();