4180 Final Project

Dependencies:   4DGL-uLCD-SE mbed Servo

wifi.h

Committer:
ecarrick
Date:
2016-05-01
Revision:
27:2bd737c0a8af
Parent:
25:2e95a5731412

File content as of revision 27:2bd737c0a8af:

#ifndef WIFI_H
#define WIFI_H

#include "mbed.h"
#include <string>
#include <vector>

void setup_wifi();      // must be called first, it resets the WiFi module and connects
void setup_ntp();       // must be called before update_ntp(), sends the functions to the module
void update_ntp();      // makes a connection via NTP to update the time clock, then updates the clock
void setup_http();      // must be called
void update_log(vector<string>& log);

#endif