Neale Pickett
·
2023-12-08
network.h
1#pragma once
2
3// Short this to ground to reset the network
4#define RESET_PIN 26
5
6void network_reset();
7void network_setup(char *password);
8bool connected();
9void pause(uint32_t dwMs);
10void netget(int count);
11bool clock_is_set();