Skip to content

Instantly share code, notes, and snippets.

View ElectApp's full-sized avatar

SomsakElect ElectApp

View GitHub Profile
@speters
speters / uid.ino
Last active January 21, 2024 19:59
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)
{