Simple SNMP v1 example based on Agentbed and compatible with the official networking stack

Dependencies:   Agentbed2 EthernetInterface mbed-rtos mbed

main.cpp

Committer:
jonecm
Date:
2013-04-02
Revision:
0:469a3d78c284

File content as of revision 0:469a3d78c284:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}