We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the latest environment 0.0.7 i cannot use older ESP32 V2 It says on booting:
Please provide a correct license! For more information:
http://www.heltec.cn/search/
ESP32ChipID=8CF0FE7EB994
But on the latest environment it is not possible provide the license anymore.
The text was updated successfully, but these errors were encountered:
Use: /* The true ESP32 chip ID is essentially its MAC address.*/
uint64_t chipId = 0;
void setup() { Serial.begin(115200); }
void loop() { chipId=ESP.getEfuseMac(); Serial.printf("ESP32 Chip model = %s Rev %d\n", ESP.getChipModel(), ESP.getChipRevision()); Serial.printf("This chip has %d cores\n", ESP.getChipCores()); Serial.printf("ESP32ChipID=%04X",(uint16_t)(chipId>>32));//print High 2bytes Serial.printf("%08X\r\n",(uint32_t)chipId);//print Low 4bytes. delay(3000); }
Sorry, something went wrong.
No branches or pull requests
With the latest environment 0.0.7 i cannot use older ESP32 V2
It says on booting:
Please provide a correct license! For more information:
http://www.heltec.cn/search/
ESP32ChipID=8CF0FE7EB994
But on the latest environment it is not possible provide the license anymore.
The text was updated successfully, but these errors were encountered: