Add ESP.getChipId() function to get ESP32's ChipID. (#322)

* Add ESP.getChipId() function to get ESP32's ChipID.

* change getChipId() to getEfuseMac()
This commit is contained in:
WEMOS Electronics
2017-05-05 01:59:54 -05:00
committed by Me No Dev
parent cc73f17add
commit a38ffe58fe
3 changed files with 24 additions and 0 deletions

View File

@ -76,6 +76,8 @@ public:
bool flashWrite(uint32_t offset, uint32_t *data, size_t size);
bool flashRead(uint32_t offset, uint32_t *data, size_t size);
uint64_t getEfuseMac();
};
extern EspClass ESP;