Added basic Scheduling Functionality
A JSON message can now be received on: 'vesper/DEV_ID/control/addSchedule" Each message, must hold a "file" and "data". The file is the month's name in 3 letter mode (eg jan, feb, mar) The data is an entry for each day of the month. Each day can be an array containing multiple items.
This commit is contained in:
10
.vscode/arduino.json
vendored
10
.vscode/arduino.json
vendored
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"port": "COM8",
|
||||
"configuration": "UploadSpeed=921600,CPUFreq=240,FlashFreq=80,FlashMode=qio,FlashSize=4M,PartitionScheme=default,DebugLevel=none,PSRAM=disabled,LoopCore=1,EventsCore=1,EraseFlash=none,JTAGAdapter=default,ZigbeeMode=default",
|
||||
"port": "",
|
||||
"configuration": "",
|
||||
"output": "build",
|
||||
"board": "esp32:esp32:esp32",
|
||||
"board": "",
|
||||
"programmer": "",
|
||||
"useProgrammer": false,
|
||||
"configurationRequired": true,
|
||||
"configurationRequired": false,
|
||||
"monitorPortSettings": {
|
||||
"port": "COM8",
|
||||
"port": "",
|
||||
"baudRate": 115200,
|
||||
"lineEnding": "\r\n",
|
||||
"dataBits": 8,
|
||||
|
||||
9
.vscode/c_cpp_properties.json
vendored
9
.vscode/c_cpp_properties.json
vendored
@@ -3,13 +3,18 @@
|
||||
{
|
||||
"name": "Win32",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**"
|
||||
"${workspaceFolder}/**",
|
||||
"C:/Users/Admin/Documents/Arduino/libraries/**"
|
||||
],
|
||||
"defines": [
|
||||
"_DEBUG",
|
||||
"UNICODE",
|
||||
"_UNICODE"
|
||||
]
|
||||
],
|
||||
"compilerPath": null,
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++14",
|
||||
"intelliSenseMode": "windows-clang-x64"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
|
||||
4
.vscode/settings.json
vendored
Normal file
4
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"C_Cpp.default.compilerPath": "",
|
||||
"C_Cpp.errorSquiggles": "disabled"
|
||||
}
|
||||
Reference in New Issue
Block a user