I'm trying to use the information from this devpost: https://devzone.nordicsemi.com/f/nordic-q-a/39629/how-to-send-data-to-all-node-over-mesh
However, my remaining questions are:
1) I just need to send a simple on/off, but I also want the nodes that receive the message to know which node sent the message. Is this already a feature in this code, or will this require using a more complex model (i.e. a generic level mode, to send a name/identifier for the node that sent the message)?
2) My understanding is that the client nodes send the message (to turn on the light), and the server just act on it (turn the light on/off). I want all my nodes to be able to send and receive messages, so they all sort of act like servers and clients. Can someone clue me in on how I can begin to implement this?
3) Will relay functionality automatically be implemented? If Node 1 sends a message that Nodes 2 and 3 are supposed to receive, but 3 is out of range, will 2 automatically route it to 3 if they're in range of one another?