feat(rcf): mesh transmission attempt

This commit is contained in:
slumber
2019-03-23 21:04:13 +01:00
parent e6171be305
commit 07844955a9
4 changed files with 410 additions and 69 deletions

View File

@ -226,6 +226,7 @@ class Loader:
if filter_function(any):
load_function(any, dump)
return
def _load_identity(self, element, dump):
element.write(dump)
@ -298,6 +299,7 @@ class Loader:
return # TODO error handling
for k in self._ordered_keys(dump.keys()):
v = dump[k]
print(k)
if not hasattr(default.read(), k):
continue # TODO error handling
self._load_any(default.extend(k), v)