speed matrix

This commit is contained in:
2021-09-19 18:39:08 -05:00
parent 68f02588e2
commit d4c309b255
4 changed files with 45 additions and 32 deletions

View File

@@ -3,22 +3,27 @@
#include <ArduinoJson.h>
#include <NTPClient.h>
#include <WiFiUdp.h>
#define DEBUG 0
#if DEBUG==1
#define debug(x) Serial.println(x)
#else
#define debug(x)
#endif
WiFiUDP ntpUDP;
NTPClient timeClient(ntpUDP, "0.south-america.pool.ntp.org", -18000, 6000);
const char *ssid = "mdchaparror";
const char *password = "un260874";
long timeAnterior;
long matrix_time;
int matrix_speed = 150;
#include "matrix.hpp"
#include "mqtt.hpp"
#include "ota.hpp"
const char *ssid = "mdchaparror";
const char *password = "un260874";
long timeAnterior;
long matrix_time;
void setup()
{
Serial.begin(115200);
Serial.begin(921600);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
while (WiFi.waitForConnectResult() != WL_CONNECTED)
@@ -26,9 +31,8 @@ void setup()
delay(5000);
ESP.restart();
}
//Serial.println(WiFi.localIP());
mensaje += WiFi.localIP().toString();
debug(WiFi.localIP());
ota_init();
mqtt_init();
@@ -38,27 +42,33 @@ void setup()
void loop()
{
ArduinoOTA.handle();
yield();
if ((millis() - matrix_time) > 150)
ArduinoOTA.handle();
if ((millis() - matrix_time) > (long unsigned int)matrix_speed)
{
matrix_time = millis();
show_matrix();
}
if ((millis() - timeAnterior) > 1000)
if ((millis() - timeAnterior) > 2500)
{
timeAnterior = millis();
if (!client.connected())
{ yield();
reconnect();
}
yield();
timeClient.update(); //sincronizamos con el server NTP
yield();
hora = timeClient.getFormattedTime();
texto = mensaje + " " + hora;
longitud = texto.length() * 5 + 64;
}
if (!client.connected())
{
reconnect();
}
client.loop();
yield();
debug("\n\n Free RAM -> ");
debug(ESP.getFreeHeap());
}