wallart/network.h

11 lines
208 B
C
Raw 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);