10 lines
185 B
C
10 lines
185 B
C
|
#ifndef _WIFI_FUNCTIONS_H_
|
||
|
#define _WIFI_FUNCTIONS_H_
|
||
|
|
||
|
#define WIFI_SSID "huawei-2929"
|
||
|
#define WIFI_PASS "chefrolet"
|
||
|
|
||
|
void wifi_initialise(void);
|
||
|
void wifi_wait_connected();
|
||
|
|
||
|
#endif
|