payano / mMesh

Mesh implementation for embedded systems, focusing on a small footprint
MIT License
0 stars 1 forks source link

Move network_recv into its own class #9

Closed payano closed 4 years ago

payano commented 4 years ago

Keeping the state machine in Mesh.cpp and the network_recv methods into another class. A good name for the class might be MeshNetworkHandler. The Mesh class could also be renamed to MeshSM, and perhaps create a new class Mesh which creates instances of both classes mentioned above.

payano commented 4 years ago

Done.