OOP Variant of ESPMega
This commit is contained in:
parent
fc692ef0b0
commit
9c3d4e7bab
|
@ -0,0 +1,66 @@
|
||||||
|
#include <ESPMegaPRO_OOP.hpp>
|
||||||
|
ESPMegaPRO::ESPMegaPRO() {
|
||||||
|
|
||||||
|
}
|
||||||
|
void ESPMegaPRO::begin() {
|
||||||
|
Wire.begin(14, 33);
|
||||||
|
inputs.begin();
|
||||||
|
outputs.begin();
|
||||||
|
fram.begin(FRAM_ADDRESS);
|
||||||
|
|
||||||
|
}
|
||||||
|
void ESPMegaPRO::loop() {
|
||||||
|
inputs.loop();
|
||||||
|
outputs.loop();
|
||||||
|
for (int i = 0; i < 256; i++) {
|
||||||
|
if (cardInstalled[i]) {
|
||||||
|
cards[i]->loop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void ESPMegaPRO::installCard(uint8_t slot, ExpansionCard* card) {
|
||||||
|
cards[slot] = card;
|
||||||
|
cardInstalled[slot] = true;
|
||||||
|
cardCount++;
|
||||||
|
}
|
||||||
|
bool ESPMegaPRO::updateTimeFromNTP() {
|
||||||
|
struct tm timeinfo;
|
||||||
|
if (getLocalTime(&timeinfo))
|
||||||
|
{
|
||||||
|
rtctime_t rtctime = this->getTime();
|
||||||
|
if (rtctime.hours != timeinfo.tm_hour || rtctime.minutes != timeinfo.tm_min ||
|
||||||
|
rtctime.seconds != timeinfo.tm_sec || rtctime.day != timeinfo.tm_mday ||
|
||||||
|
rtctime.month != timeinfo.tm_mon + 1 || rtctime.year != timeinfo.tm_year + 1900)
|
||||||
|
{
|
||||||
|
this->setTime(timeinfo.tm_hour, timeinfo.tm_min, timeinfo.tm_sec,
|
||||||
|
timeinfo.tm_mday, timeinfo.tm_mon + 1, timeinfo.tm_year + 1900);
|
||||||
|
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
rtctime_t ESPMegaPRO::getTime() {
|
||||||
|
tmElements_t timeElement;
|
||||||
|
RTC.read(timeElement);
|
||||||
|
rtctime_t time;
|
||||||
|
time.hours = timeElement.Hour;
|
||||||
|
time.minutes = timeElement.Minute;
|
||||||
|
time.seconds = timeElement.Second;
|
||||||
|
time.day = timeElement.Day;
|
||||||
|
time.month = timeElement.Month;
|
||||||
|
time.year = timeElement.Year + 1970;
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ESPMegaPRO::setTime(int hours, int minutes, int seconds, int day, int month, int year)
|
||||||
|
{
|
||||||
|
tmElements_t timeElement;
|
||||||
|
timeElement.Hour = hours;
|
||||||
|
timeElement.Minute = minutes;
|
||||||
|
timeElement.Second = seconds;
|
||||||
|
timeElement.Day = day;
|
||||||
|
timeElement.Month = month;
|
||||||
|
timeElement.Year = year - 1970;
|
||||||
|
RTC.write(timeElement);
|
||||||
|
}
|
|
@ -34,9 +34,11 @@ class ESPMegaPRO {
|
||||||
void installCard(uint8_t slot, ExpansionCard* card);
|
void installCard(uint8_t slot, ExpansionCard* card);
|
||||||
bool updateTimeFromNTP();
|
bool updateTimeFromNTP();
|
||||||
rtctime_t getTime();
|
rtctime_t getTime();
|
||||||
|
void setTime(int hours, int minutes, int seconds, int day, int month, int year);
|
||||||
FRAM fram;
|
FRAM fram;
|
||||||
private:
|
private:
|
||||||
ExpansionCard* cards[255];
|
ExpansionCard* cards[255];
|
||||||
|
bool cardInstalled[255];
|
||||||
uint8_t cardCount = 0;
|
uint8_t cardCount = 0;
|
||||||
DigitalInputCard inputs = DigitalInputCard(INPUT_BANK_A_ADDRESS, INPUT_BANK_B_ADDRESS);
|
DigitalInputCard inputs = DigitalInputCard(INPUT_BANK_A_ADDRESS, INPUT_BANK_B_ADDRESS);
|
||||||
DigitalOutputCard outputs = DigitalOutputCard(PWM_BANK_ADDRESS);
|
DigitalOutputCard outputs = DigitalOutputCard(PWM_BANK_ADDRESS);
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ESPMegaPRO.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
class ExpansionCard {
|
class ExpansionCard {
|
||||||
public:
|
public:
|
||||||
|
|
Loading…
Reference in New Issue