Skip to content

Commit f6ed84d

Browse files
committed
Arduino Bootstrapper (v1.17.1)
1 parent 1e5e032 commit f6ed84d

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/sblantipodi/arduino_bootstrapper.git"
88
},
9-
"version": "1.17.0",
9+
"version": "1.17.1",
1010
"examples": "examples/*.cpp",
1111
"exclude": "tests",
1212
"frameworks": "arduino",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Bootstrapper
2-
version=1.17.0
2+
version=1.17.1
33
author=Davide Perini <[email protected]>
44
maintainer=Davide Perini <[email protected]>
55
sentence=A client library for MQTT messaging.

src/EthManager.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,24 @@ const ethernet_config ethernetDevices[] = {
8383
17,
8484
ETH_PHY_LAN8720,
8585
ETH_CLOCK_GPIO0_IN
86+
},
87+
// LilyGO-T-POE-Pro
88+
{
89+
0,
90+
5,
91+
23,
92+
18,
93+
ETH_PHY_LAN8720,
94+
ETH_CLOCK_GPIO0_OUT
95+
},
96+
// ESP32-POE-WROVER
97+
{
98+
0,
99+
12,
100+
23,
101+
18,
102+
ETH_PHY_LAN8720,
103+
ETH_CLOCK_GPIO0_OUT
86104
}
87105
};
88106

0 commit comments

Comments
 (0)