Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions examples/AsyncSend/AsyncSend.ino
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ Buffer received - next send in 2 sec
#include <Arduino.h>
#include <AsyncTCP.h>
#include <StreamString.h>
#ifdef ESP8266
#include <ESP8266WiFi.h>
#else
#include <WiFi.h>
#endif
#include <assert.h>

#include <functional>
Expand Down
1 change: 1 addition & 0 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"frameworks": "arduino",
"platforms": [
"espressif32",
"espressif8266",
"libretiny"
],
"export": {
Expand Down
4 changes: 4 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ build_flags =
; (BK7231 already uses it)
custom_versions.freertos = 9.0.0

[env:esp8266]
platform = espressif8266
board = d1_mini

; CI

[env:ci-arduino-2]
Expand Down
Loading
Loading