First working platformio version

This commit is contained in:
Dmitry Borisenko
2020-06-18 23:43:06 +02:00
parent c16b61c82b
commit 86e18f1e99
45 changed files with 511 additions and 856 deletions

View File

@@ -1,8 +1,4 @@
#include "Timers.h"
#include "Scenario.h"
#include "main.h"
#include "set.h"
#include "Global.h"
void Timer_countdown_init() {
ts.add(
@@ -33,7 +29,7 @@ void Timer_countdown_init() {
nullptr, true);
}
void timerStart() {
void timerStart_() {
String number = sCmd.next();
String period_of_time = sCmd.next();
String type = sCmd.next();
@@ -64,7 +60,7 @@ void addTimer(String number, String time) {
//Serial.println("ura");
}
void timerStop() {
void timerStop_() {
String number = sCmd.next();
delTimer(number);
}