Skip to content

Instantly share code, notes, and snippets.

View abcd-ca's full-sized avatar

Andrew Blair abcd-ca

View GitHub Profile
@abcd-ca
abcd-ca / example.ino
Created May 27, 2019 04:10
Example of getting unique mac address using Ethernet Featherwing
#import "macAddress.h"
void setup () {
byte mac[6];
getUniqueMacAddress(mac);
Serial.begin(115200);
Serial.print("mac: ");
for (uint8_t i = 0; i < sizeof(mac); i++) {