separate in directories
[mTask.git] / client / interface.h
index 9e81810..0982d4c 100644 (file)
@@ -22,6 +22,13 @@ extern char **gargv;
 #define HAVEAIO 1
 #define HAVEDIO 1
 
+#elif defined ARDUINO_ESP8266_NODEMCU
+#define MAXTASKS 5
+#define MAXSDSS 100
+#define HAVELED 0
+#define HAVEAIO 0
+#define HAVEDIO 0
+
 #else
 //Add you device here
 #endif
@@ -52,8 +59,8 @@ void led_off(uint8_t i);
 #endif
 
 /* Delay and communication */
-long millis(void);
-void delay(long ms);
+long getmillis(void);
+void msdelay(long ms);
 
 /* Auxilliary */
 void setup(void);