Skip to content

Commit 38b1f98

Browse files
authored
Merge pull request arduino#402 from d-a-v/patch-1
Add `Ethernet::MACAddress()` implementation
2 parents d815e98 + 88cbce9 commit 38b1f98

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

libraries/Ethernet/src/Ethernet.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,9 @@ unsigned long arduino::EthernetClass::getTime() {
8484
return 0;
8585
}
8686

87+
void arduino::EthernetClass::MACAddress(uint8_t *mac_address)
88+
{
89+
macAddress(mac_address);
90+
}
91+
8792
arduino::EthernetClass Ethernet;

0 commit comments

Comments
 (0)