Skip to content
Snippets Groups Projects
Commit 21a7d75c authored by Moritz Perschke's avatar Moritz Perschke
Browse files

loop functions checks for cached data to resend

parent 0aeede80
No related branches found
No related tags found
5 merge requests!39Merge Develop into Main,!19development into master,!17Inital Host, initial Client,!3Merge Branch `develop` into `sensor_readout`,!1Espnow
...@@ -106,4 +106,18 @@ Message :: Message(){ ...@@ -106,4 +106,18 @@ Message :: Message(){
data->amountData = 0; data->amountData = 0;
data->timestamp = rtc.getMillis(); // I am assuming we are not sending data from Unix Epoch data->timestamp = rtc.getMillis(); // I am assuming we are not sending data from Unix Epoch
}
Message :: Message(data_struct old_data){
memcpy(data, &old_data, sizeof(data));
preferences.begin("config", true);
if(preferences.isKey("host")){
preferences.getBytes("host", recipient, sizeof(uint8_t) * 6);
}
else{
memcpy(recipient, BROADCAST_MAC, sizeof(BROADCAST_MAC));
Serial.println("backup mac used");
}
preferences.end();
} }
\ No newline at end of file
#include <Arduino.h> #include <Arduino.h>
#include "espnow.hpp" #include "espnow.hpp"
#include "ram_caching.hpp"
void setup() { void setup() {
...@@ -22,5 +23,12 @@ void loop() { ...@@ -22,5 +23,12 @@ void loop() {
new_data->add_data(counter * 1.3, 2); new_data->add_data(counter * 1.3, 2);
new_data->send(); new_data->send();
delete new_data; delete new_data;
if(!ram_cache_is_empty()){
data_struct old_data = ram_cache_pop();
Message* resend_message = new Message(old_data);
resend_message->send();
delete resend_message;
}
delay(5000); delay(5000);
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment