Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit af729ac

Browse files
committed
Initial Import
1 parent 75900e3 commit af729ac

File tree

8 files changed

+1299
-1
lines changed

8 files changed

+1299
-1
lines changed

.travis.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
sudo: false
2+
language: bash
3+
os:
4+
- linux
5+
6+
script:
7+
- /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_1.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :1 -ac -screen 0 1280x1024x16
8+
- sleep 3
9+
- export DISPLAY=:1.0
10+
- wget http://downloads.arduino.cc/arduino-1.6.5-linux64.tar.xz
11+
- tar xf arduino-1.6.5-linux64.tar.xz
12+
- mv arduino-1.6.5 $HOME/arduino_ide
13+
- export PATH="$HOME/arduino_ide:$PATH"
14+
- which arduino
15+
- mkdir -p $HOME/Arduino/libraries
16+
- cp -r $TRAVIS_BUILD_DIR $HOME/Arduino/libraries/ESPAsyncTCP
17+
- cd $HOME/arduino_ide/hardware
18+
- mkdir esp8266com
19+
- cd esp8266com
20+
- git clone https://github.com/esp8266/Arduino.git esp8266
21+
- cd esp8266/tools
22+
- python get.py
23+
- source $TRAVIS_BUILD_DIR/travis/common.sh
24+
- arduino --board esp8266com:esp8266:generic --save-prefs
25+
- arduino --get-pref sketchbook.path
26+
- build_sketches arduino $HOME/Arduino/libraries/ESPAsyncTCP esp8266
27+
28+
notifications:
29+
email:
30+
on_success: change
31+
on_failure: change
32+
webhooks:
33+
urls:
34+
- https://webhooks.gitter.im/e/60e65d0c78ea0a920347
35+
on_success: change # options: [always|never|change] default: always
36+
on_failure: always # options: [always|never|change] default: always
37+
on_start: false # default: false

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
# AsyncTCP
2-
Async TCP Library for ESP32
2+
Async TCP Library for ESP32 Arduino
3+
4+
[![Join the chat at https://gitter.im/me-no-dev/ESPAsyncWebServer](https://badges.gitter.im/me-no-dev/ESPAsyncWebServer.svg)](https://gitter.im/me-no-dev/ESPAsyncWebServer?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5+
6+
This is a fully asynchronous TCP library, aimed at enabling trouble-free, multi-connection network environment for Espressif's ESP32 MCUs.
7+
8+
This library is the base for [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer)
9+
10+
## AsyncClient and AsyncServer
11+
The base classes on which everything else is built. They expose all possible scenarios, but are really raw and require more skills to use.

component.mk

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
COMPONENT_ADD_INCLUDEDIRS := src
2+
COMPONENT_SRCDIRS := src
3+
CXXFLAGS += -fno-rtti

library.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name":"AsyncTCP",
3+
"description":"Asynchronous TCP Library for ESP32",
4+
"keywords":"async,tcp",
5+
"authors":
6+
{
7+
"name": "Hristo Gochkov",
8+
"maintainer": true
9+
},
10+
"repository":
11+
{
12+
"type": "git",
13+
"url": "https://github.com/me-no-dev/AsyncTCP.git"
14+
},
15+
"version": "1.0.0",
16+
"license": "LGPL-3.0",
17+
"frameworks": "arduino",
18+
"platforms":"espressif",
19+
"examples": [
20+
"examples/*/*.ino"
21+
]
22+
}

library.properties

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=AsyncTCP
2+
version=1.0.0
3+
author=Me-No-Dev
4+
maintainer=Me-No-Dev
5+
sentence=Async TCP Library for ESP32
6+
paragraph=Async TCP Library for ESP32
7+
category=Other
8+
url=https://github.com/me-no-dev/AsyncTCP
9+
architectures=*

0 commit comments

Comments
 (0)