Giter VIP home page Giter VIP logo

asyncping's Introduction

AsyncPing

This is a fully asynchronous Ping library for Espressif's ESP8266 MCUs. have full ping statistic and hardware MAC address

tested on 2.3.0 esp8266/Arduino patched for 2.4.x

to install: git clone https://github.com/akaJes/AsyncPing.git ~/Arduino/libraries/AsyncPing

usage

AsyncPing ping;

/* callback for each answer/timeout of ping */
ping.on(true,[](const AsyncPingResponse& response){
  IPAddress addr(response.addr); //to prevent with no const toString() in 2.3.0
  if (response.answer)
    Serial.printf("%d bytes from %s: icmp_seq=%d ttl=%d time=%d ms\n", response.size, addr.toString().c_str(), response.icmp_seq, response.ttl, response.time);
  else
    Serial.printf("no answer yet for %s icmp_seq=%d\n", addr.toString().c_str(), response.icmp_seq);
  return false; //do not stop
});

/* callback for end of ping */
ping.on(false,[](const AsyncPingResponse& response){
  IPAddress addr(response.addr); //to prevent with no const toString() in 2.3.0
  Serial.printf("total answer from %s sent %d recevied %d time %d ms\n",addr.toString().c_str(),response.total_sent,response.total_recv,response.total_time);
  if (response.mac)
    Serial.printf("detected eth address " MACSTR "\n",MAC2STR(response.mac->addr));
  return true; //doesn't matter
});

ping.begin(WiFi.gatewayIP());

asyncping's People

Contributors

akajes avatar sascha432 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.