Plymouth ELEC351 Group T / Mbed OS ELEC351_Group_T

Fork of ELEC351 by Plymouth ELEC351 Group T

NETWORK.cpp

Committer:
thomasmorris
Date:
2018-01-07
Revision:
36:a0098306fc58
Parent:
35:26b0a9b55d82
Child:
37:7c4d7f206039

File content as of revision 36:a0098306fc58:

#include "NETWORK.hpp"

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


void Network_Init()
{ 
    printf("Basic HTTP server example\n");
    //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());
    //t1.start(Network_Thread);
    /* 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);
}
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("accept %s:%d\n", clt_addr.get_ip_address(), clt_addr.get_port());
        printf("In networking");
        //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);
        sprintf(output2_str, "%d/" , network_month);
        sprintf(output3_str, "%d   " , network_year);
        sprintf(output4_str, "Time:%d:" , network_hours);
        sprintf(output5_str, "%d   " , network_minute);
        sprintf(output6_str, "Temperature is : %1.1f   " , network_temperature);
        sprintf(output7_str, "Pressure is : %1.1f   " , network_pressure);
        sprintf(output8_str, "Light is : %5.3f   " , network_light);
        
        
        //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);    
}