WIZ Proto Makers 3th Network

Dependencies:   WIZnetInterface mbed

Fork of WIZwiki-W7500-lecture by Bohyun Bang

main.cpp

Committer:
Ricky_Kwon
Date:
2016-02-03
Revision:
4:fb02cd21f3dc
Parent:
3:cb2bf9e077f0

File content as of revision 4:fb02cd21f3dc:

#include "mbed.h"
#include "EthernetInterface.h"

int main() {
    
    EthernetInterface eth;
    
    printf("Network");
    uint8_t mac_addr[6] = {0x00, 0x08, 0xDC, 0x00, 0x05, 0x01};
    //eth.init(mac_addr, "192.168.1.180", "255.255.255.0", "192.168.1.1"); // USE Static IP
    eth.init(mac_addr); //Use DHCP
    
    while(1) { //Wait link up
    if(eth.link() == true)
        break;
    }
        
    eth.connect();
     
    printf("IP Address is %s\r\n", eth.getIPAddress());

    eth.disconnect();

}