Asa Ewing / Mbed OS mbed-os-rest-api-V1-1

Dependencies:   CPU_Usage NetworkManager RestAPI_Manager

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers module_for_all.h Source File

module_for_all.h

00001 #ifndef MODULE_FOR_ALL_H
00002 #define MODULE_FOR_ALL_H
00003 
00004 #include <stdio.h>
00005 #include <iostream>
00006 #include <sstream>
00007 #include <string>
00008 #include <vector>
00009 #include <iterator>
00010 
00011 #include "EthernetInterface.h"
00012 #include "TCPServer.h"
00013 #include "TCPSocket.h"
00014 
00015 #include "mbed.h"
00016 
00017 #include "NetworkManager.h"
00018 #include "RestAPI_Manager.h"
00019 #include "CPU_Usage.h"
00020 
00021 void split(const std::string&,
00022     std::vector<std::string>&,
00023                   const char*);
00024 
00025 char* stringToChar(std::string);
00026 
00027 void LED_PowerStart();
00028 void LED_NetWait();
00029 void LED_NetProcess();
00030 int countRoot(std::string&);
00031 
00032 #endif