#include "Node.h"
Node::Node_t node1(1, 10);
Node::Node_t node2(2, 15);
void setup() {
Serial.begin(115200);
Node::Node_t node1(1, 10);
Node::Node_t node2(2, 15);
}
void loop() {
Node::showNeighbours();
while(1);
}
#include "Node.h"
Node::Node_t node1(1, 10);
Node::Node_t node2(2, 15);
void setup() {
Serial.begin(115200);
Node::Node_t node1(1, 10);
Node::Node_t node2(2, 15);
}
void loop() {
Node::showNeighbours();
while(1);
}