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

fipy host broadcasts its mac + timestamp on start, main function of client...

fipy host broadcasts its mac + timestamp on start, main function of client updated according to last commit
parent 31995151
No related branches found
No related tags found
4 merge requests!39Merge Develop into Main,!19development into master,!17Inital Host, initial Client,!5fipy host broadcasts its mac + timestamp on start, main function of client...
......@@ -38,17 +38,17 @@ void loop()
new_data.add_data(++counter * 1.1, 0);
new_data.add_data(counter * 1.2, 1);
new_data.add_data(counter * 1.3, 2);
new_data.send();
espnow_send_message(new_data);
// if(!ram_cache_is_empty()){
// ClientDataPackage old_data = ram_cache_pop();
// Message* resend_message = new Message(old_data);
// resend_message->send();
// delete resend_message;
// delete resend_message;u
// }
Serial.println(esptime::rtc.getMillis());
Serial.println("delaying...");
Serial.flush();
delay(5000); // 5 second receive window
deep_sleep(900); // go to sleep for 15 mins (900s)
// deep_sleep(900); // go to sleep for 15 mins (900s)
}
\ No newline at end of file
......@@ -41,6 +41,10 @@ def espnow_recv(result):
espnow_respond(mac)
def espnow_broadcast_config():
msg = struct.pack("<6sl", self_mac, time.time())
ESPNOW.send(None, msg)
def bytes_to_data(msg):
# turn bytes from message into 22-tuple of integers(identifiers), floats(values), integer(amount) and long(timestamp)
data = struct.unpack("<10i10fil", bytes(msg))
......
......@@ -2,7 +2,7 @@
# from network import ESPNOW
from time import sleep
from lib.server_transfer import DataTransferWiFi
from lib.espnow import Forte_ESPNOW
from lib.espnow import Forte_ESPNOW, espnow_broadcast_config
from lib.rtc_time import RTCTime
# data = DataTransferWiFi()
......@@ -14,6 +14,7 @@ from lib.rtc_time import RTCTime
#
rtc_time = RTCTime((2014, 5, 1, 4, 13, 0, 0, 0))
espnow = Forte_ESPNOW()
espnow_broadcast_config()
while True:
sleep(5)
pass
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