* Add Config * Add Cache and remove pre-commit action * [pre-commit.ci lite] apply automatic fixes * Remove freeze * Fix * Update action * Use latest stable Python 3 version * Improve caching * Improve cache tag * Improve bot message * fix(typos): Fix typos * fix(typos): Fix more typos * refactor(udp_server): Convert script from Python 2 to 3 * Fix whitespace * Clang-format fixes * Prettier fixes * Black formatting * Manual fixes * Line endings * Fix flake and make Vale manual * Fix flake and reformat --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Co-authored-by: Rodrigo Garcia <rodrigo.garcia@espressif.com>
30 lines
873 B
C++
30 lines
873 B
C++
/* The true ESP32 chip ID is essentially its MAC address.
|
|
This sketch provides an alternate chip ID that matches
|
|
the output of the ESP.getChipId() function on ESP8266
|
|
(i.e. a 32-bit integer matching the last 3 bytes of
|
|
the MAC address. This is less unique than the
|
|
MAC address chip ID, but is helpful when you need
|
|
an identifier that can be no more than a 32-bit integer
|
|
(like for switch...case).
|
|
|
|
created 2020-06-07 by cweinhofer
|
|
with help from Cicicok */
|
|
|
|
uint32_t chipId = 0;
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
}
|
|
|
|
void loop() {
|
|
for (int i = 0; i < 17; i = i + 8) {
|
|
chipId |= ((ESP.getEfuseMac() >> (40 - i)) & 0xff) << i;
|
|
}
|
|
|
|
Serial.printf("ESP32 Chip model = %s Rev %d\n", ESP.getChipModel(), ESP.getChipRevision());
|
|
Serial.printf("This chip has %d cores\n", ESP.getChipCores());
|
|
Serial.print("Chip ID: ");
|
|
Serial.println(chipId);
|
|
|
|
delay(3000);
|
|
}
|