Skip to content

Instantly share code, notes, and snippets.

View mrgadotti's full-sized avatar
🚀

Marcelo Gadotti mrgadotti

🚀
View GitHub Profile
@mrgadotti
mrgadotti / uid.ino
Created October 28, 2020 17:16 — forked from speters/uid.ino
Arduino atmega328p unique id/serial number
#include <avr/boot.h>
void print_val(char *msg, uint8_t val)
{
Serial.print(msg);
Serial.println(val, HEX);
}
void setup(void)
{