ESP8266Ping icon indicating copy to clipboard operation
ESP8266Ping copied to clipboard

Add to the Arduino Library Manager

Open gusdleon opened this issue 4 years ago • 1 comments

Hey Any plans to add this library to the Arduino Library Manager? It looks ready to be added only needs the library.json file, to be complete

Thanks and I hope you consider this

gusdleon avatar Jun 24 '20 22:06 gusdleon

With PlatformIO (and I assume it's the same for Arduino), for a directory structure like this: lib/ESP8266Ping lib/ESP8266Ping/library.json lib/ESP8266Ping/include lib/ESP8266Ping/include/ESP8266Ping.h lib/ESP8266Ping/include/ESP8266Ping.impl.h

This is a sample library.json file:

{
    "name": "ESP8266Ping",
    "version": "1.0.0",
    "keywords": "ping",
    "description": "Ping for ESP8266",
    "repository": {
        "type": "git",
        "url": "https://github.com/dancol90/ESP8266Ping"
    },
    "frameworks": "arduino",
    "platforms": "esp8266",
    "build": {
        "libArchive": false,
		"flags": [
            "-Iinclude"
		]
    }
}

dalbert2 avatar Feb 11 '23 13:02 dalbert2