Plymouth ELEC351 Group T / Mbed OS ELEC351_Group_T

Fork of ELEC351 by Plymouth ELEC351 Group T

NETWORK.cpp

Committer:
thomasmorris
Date:
2018-01-08
Revision:
41:859b5e1e3d9a
Parent:
37:7c4d7f206039
Child:
45:875f7e18a386

File content as of revision 41:859b5e1e3d9a:

#include "NETWORK.hpp"
#include <string>
AnalogIn ldr(PA_0);

//Now setup a web server
TCPServer srv;           //TCP/IP Server
TCPSocket clt_sock;      //Socket for communication
SocketAddress clt_addr;  //Address of incoming connection
string GateWay_IP;

int Network_Init()
{ 
    //Configure an ethernet connection
    EthernetInterface eth;
    eth.set_network(IP, NETMASK, GATEWAY);
    eth.connect();
    printf("The target IP address is '%s'\n", eth.get_ip_address());
    GateWay_IP = eth.get_ip_address();
    
    if(GateWay_IP != "10.0.0.10")
    {
        return 1;
        //Error code here   
    }
    /* Open the server on ethernet stack */
    srv.open(&eth);
    
    /* Bind the HTTP port (TCP 80) to the server */
    srv.bind(eth.get_ip_address(), 80);
    
    /* Can handle 5 simultaneous connections */
    srv.listen(5);
    return 0;
}
void Networking(int network_day, int network_month, int network_year, int network_hours, int network_minute, float network_temperature, float network_pressure, float network_light)
{    
        //using namespace std;
        //Block and wait on an incoming connection
        srv.accept(&clt_sock, &clt_addr);
        printf("Networking connection accept %s:%d\n", clt_addr.get_ip_address(), clt_addr.get_port());
        //Uses a C++ string to make it easier to concatinate
        string response;
        //This is a C string
        char output1_str[64];
        char output2_str[64];
        char output3_str[64];
        char output4_str[64];
        char output5_str[64];
        char output6_str[64];
        char output7_str[64];
        char output8_str[64];
        
        //Convert to a C String
        sprintf(output1_str, "%d/" , network_day);//Print Day
        sprintf(output2_str, "%d/" , network_month);//Print Month
        sprintf(output3_str, "%d   " , network_year);//Print Year
        sprintf(output4_str, "Time:%d:" , network_hours);//Print Hours
        sprintf(output5_str, "%d   " , network_minute);//Print Minute
        sprintf(output6_str, "Temperature is : %1.1f   " , network_temperature);//Print temperature
        sprintf(output7_str, "Pressure is : %1.1f   " , network_pressure);//Print Pressure
        sprintf(output8_str, "Light is : %5.3f   " , network_light);//Print Light level
        
        
        //Build the C++ string response
        response = HTTP_MESSAGE_BODY1;
        response +=output1_str;
        response +=output2_str;
        response +=output3_str;
        response +=output4_str;
        response +=output5_str;
        response +=output6_str;
        response +=output7_str;
        response +=output8_str;
        response += HTTP_MESSAGE_BODY2;
        
        //Send static HTML response (as a C string)
        clt_sock.send(response.c_str(), response.size()+6);    
}