UIPEthernet library for Arduino IDE, Eclipse with arduino plugin and MBED/SMeshStudio (AVR,STM32F,ESP8266,Intel ARC32,Nordic nRF51,Teensy boards,Realtek Ameba(RTL8195A,RTL8710)), ENC28j60 network chip. Compatible with Wiznet W5100 Ethernet library API. Compiled and tested on Nucleo-F302R8. Master repository is: https://github.com/UIPEthernet/UIPEthernet/

examples/UdpClient/UdpClient.ino

Committer:
cassyarduino
Date:
2016-12-29
Revision:
11:3fb19220d9ec
Parent:
6:f092f8b320ae
Child:
12:aef29fbc4a62

File content as of revision 11:3fb19220d9ec:

/*
 * UIPEthernet UdpClient example.
 *
 * UIPEthernet is a TCP/IP stack that can be used with a enc28j60 based
 * Ethernet-shield.
 *
 * UIPEthernet uses the fine uIP stack by Adam Dunkels <adam@sics.se>
 *
 *      -----------------
 *
 * This UdpClient example tries to send a packet via udp to 192.168.0.1
 * on port 5000 every 5 seconds. After successfully sending the packet it
 * waits for up to 5 seconds for a response on the local port that has been
 * implicitly opened when sending the packet.
 *
 * Copyright (C) 2013 by Norbert Truchsess (norbert.truchsess@t-online.de)
 */

#if defined(__MBED__)
  #include <mbed.h>
  #include "mbed/millis.h"
  #define delay(x) wait_ms(x)
  #define PROGMEM
  #include "mbed/Print.h"
#endif

#include <UIPEthernet.h>
#include "utility/logging.h"

EthernetUDP udp;
unsigned long next;

#if defined(ARDUINO)
void setup() {
#endif  
#if defined(__MBED__)
int main() {
#endif
  #if ACTLOGLEVEL>LOG_NONE
    LogObject.begin(9600);
  #endif

  uint8_t mac[6] = {0x00,0x01,0x02,0x03,0x04,0x05};

  Ethernet.begin(mac,IPAddress(192,168,0,6));

  next = millis()+5000;
#if defined(ARDUINO)
}

void loop() {
#endif  

#if defined(__MBED__)
while(true) {
#endif
  int success;
  int len = 0;

  if (millis()>next)
    {
      do
        {
          success = udp.beginPacket(IPAddress(192,168,0,1),5000);
          #if ACTLOGLEVEL>=LOG_INFO
            LogObject.uart_send_str(F("beginPacket: "));
            LogObject.uart_send_strln(success ? "success" : "failed");
          #endif
          //beginPacket fails if remote ethaddr is unknown. In this case an
          //arp-request is send out first and beginPacket succeeds as soon
          //the arp-response is received.
          #if defined(ESP8266)
            wdt_reset();
          #endif
        }
      while (!success && (millis()<next));
      if (success)
        {
        success = udp.write("hello world from arduino");
        #if ACTLOGLEVEL>=LOG_INFO
          LogObject.uart_send_str(F("bytes written: "));
          LogObject.uart_send_decln(success);
        #endif
        success = udp.endPacket();
        #if ACTLOGLEVEL>=LOG_INFO
          LogObject.uart_send_str(F("endPacket: "));
          LogObject.uart_send_strln(success ? "success" : "failed");
        #endif
        do
          {
          //check for new udp-packet:
          success = udp.parsePacket();
          #if defined(ESP8266)
            wdt_reset();
          #endif
          }
        while (!success && (millis()<next));
        if (success)
          {
          #if ACTLOGLEVEL>=LOG_INFO
            LogObject.uart_send_str(F("received: '"));
          #endif
          do
            {
            int c = udp.read();
            #if ACTLOGLEVEL>=LOG_INFO
              LogObject.write(c);
            #endif
            len++;
            }
          while ((success = udp.available())>0);
          #if ACTLOGLEVEL>=LOG_INFO
            LogObject.uart_send_str(F("', "));
            LogObject.uart_send_dec(len);
            LogObject.uart_send_strln(F(" bytes"));
          #endif
          //finish reading this packet:
          udp.flush();
          }
        }
      udp.stop();
      next = millis()+5000;
    }
}
#if defined(__MBED__)
}
#endif