Delete Settings_Minimal_ESP32_01.ino

This commit is contained in:
Stef-aap 2020-04-18 16:02:57 +02:00 committed by GitHub
parent 2b493aefc0
commit ec06a885b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 40 deletions

View File

@ -1,40 +0,0 @@
// ****************************************************************************
// Minimal program to get a FTP server working for uploading files
// ****************************************************************************
// Version 0.1, 14-08-2019, SM, checked by ..
// - initial version
// ****************************************************************************
#define _Main_Name "Settings Minimal"
#define _Main_Version 0.1
// *************************************************************************
// build parameters to reduce RAM size
// *************************************************************************
#define YES_INCLUDE_FTPSERVER
#define NOT_INCLUDE_RECEIVER_MQTT
#define NOT_INCLUDE_RECEIVER_SDFAT
#define NOT_INCLUDE_RECEIVER_SSD1306
#define NOT_INCLUDE_RECEIVER_TM1638
#include "Sensor_Receiver_2.h"
// ****************************************************************************
void setup() {
Serial_Setup ( 115200 ) ;
// ////////////////////////////
//SPIFFS.format();
// ////////////////////////////
Sensors .Add ( new _Sensor_Wifi ( "Dummy" ) );
Receivers.Add ( new _Receiver_SPIFFS () ) ;
Sensors .setup () ;
Receivers.setup () ;
}
// ****************************************************************************
void loop() {
Sensors .loop () ;
Receivers.loop () ;
}