mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2024-10-05 20:47:50 -04:00
status led
This commit is contained in:
parent
7de075e012
commit
9a8e0268d4
@ -4,13 +4,20 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "secrets.h"
|
#include "secrets.h"
|
||||||
|
|
||||||
|
// Define tasks
|
||||||
|
TaskHandle_t Status_Task;
|
||||||
|
unsigned int t = 125;
|
||||||
|
|
||||||
// put function declarations here:
|
// put function declarations here:
|
||||||
int myFunction(int, int);
|
int myFunction(int, int);
|
||||||
|
void StatusCode (void* parameters);
|
||||||
|
|
||||||
void setup() {
|
void setup() {
|
||||||
|
|
||||||
Serial.begin(115200);
|
Serial.begin(115200);
|
||||||
Serial.println("Running setip ...");
|
Serial.println("Running setip ...");
|
||||||
|
t = 125;
|
||||||
|
xTaskCreatePinnedToCore(StatusCode, "Status LED", 1000, NULL, 2, &Status_Task, 0);
|
||||||
|
|
||||||
WiFi.config(INADDR_NONE, INADDR_NONE, INADDR_NONE, INADDR_NONE);
|
WiFi.config(INADDR_NONE, INADDR_NONE, INADDR_NONE, INADDR_NONE);
|
||||||
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
|
WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
|
||||||
@ -21,6 +28,8 @@ void setup() {
|
|||||||
delay(500);
|
delay(500);
|
||||||
Serial.print("#");
|
Serial.print("#");
|
||||||
}
|
}
|
||||||
|
delay(1500);
|
||||||
|
t = 1500;
|
||||||
Serial.print("\nCONNECTED\nIP: ");
|
Serial.print("\nCONNECTED\nIP: ");
|
||||||
Serial.println(WiFi.localIP());
|
Serial.println(WiFi.localIP());
|
||||||
|
|
||||||
@ -29,9 +38,16 @@ void setup() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void loop() {
|
void loop() {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void StatusCode (void* parameters)
|
||||||
|
{
|
||||||
|
for (;;) {
|
||||||
|
digitalWrite(LED_BUILTIN, HIGH);
|
||||||
|
vTaskDelay(t);
|
||||||
|
digitalWrite(LED_BUILTIN, LOW);
|
||||||
|
vTaskDelay(t);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// put function definitions here:
|
// put function definitions here:
|
||||||
|
Loading…
Reference in New Issue
Block a user