wallart/network.h

12 lines
229 B
C
Raw Permalink Normal View History

2022-07-17 22:22:16 -06:00
#pragma once
2023-12-06 10:50:31 -07:00
// Short this to ground to reset the network
#define RESET_PIN 26
2023-09-04 16:30:21 -06:00
void network_reset();
2022-07-17 22:22:16 -06:00
void network_setup(char *password);
bool connected();
void pause(uint32_t dwMs);
2022-07-19 21:14:34 -06:00
void netget(int count);
2023-12-08 20:37:55 -07:00
bool clock_is_set();