All Projects → ricaun → Arduinouniqueid

ricaun / Arduinouniqueid

Licence: mit
Arduino Library to gets the Manufacture Serial Number from the Atmel AVR, SAM, SAMD, STM32, and ESP Microcontroller.

Projects that are alternatives of or similar to Arduinouniqueid

Rf1101se Teensy
Driving one of those cheap RF1101SE boards with a Arduino or Teensy
Stars: ✭ 45 (-65.38%)
Mutual labels:  arduino, chip
Cylon
JavaScript framework for robotics, drones, and the Internet of Things (IoT)
Stars: ✭ 3,862 (+2870.77%)
Mutual labels:  arduino, chip
Johnny Five
JavaScript Robotics and IoT programming framework, developed at Bocoup.
Stars: ✭ 12,498 (+9513.85%)
Mutual labels:  arduino, chip
Koduino
Arduino code for STM32 microcontrollers
Stars: ✭ 63 (-51.54%)
Mutual labels:  arduino, chip
Esp8266 Deauth
Multi target De-Auth attack implementation for ESP8266 module.
Stars: ✭ 128 (-1.54%)
Mutual labels:  arduino
Arduinoxinput
XInput library for USB capable Arduino boards
Stars: ✭ 126 (-3.08%)
Mutual labels:  arduino
Webduino Blockly
📦 The Visual Programming Editor for Webduino
Stars: ✭ 125 (-3.85%)
Mutual labels:  arduino
Esp wifimanager
This is an ESP32 / ESP8266 WiFi Connection Manager with fallback web configuration portal. Use this library for configuring ESP32, ESP8266 modules' WiFi, etc. Credentials at runtime. You can also specify static DNS servers, personalized HostName, fixed or random AP WiFi channel. With examples supporting ArduinoJson 6.0.0+ as well as 5.13.5- .
Stars: ✭ 125 (-3.85%)
Mutual labels:  arduino
Arduino Plotter
An Arduino library for easy graphing on host computer via serial communication
Stars: ✭ 129 (-0.77%)
Mutual labels:  arduino
Delta5 race timer
Multi-node video transmitter race timer for drone racing
Stars: ✭ 129 (-0.77%)
Mutual labels:  arduino
Jankdrone
The jankest autonomous drone ever built and programmed from scratch
Stars: ✭ 127 (-2.31%)
Mutual labels:  arduino
Pulsesensorplayground
A PulseSensor library (for Arduino) that collects our most popular projects in one place.
Stars: ✭ 126 (-3.08%)
Mutual labels:  arduino
Deepsleepdht22
Battery Powered ESP8266 WiFi Temperature and Humidity Logger
Stars: ✭ 128 (-1.54%)
Mutual labels:  arduino
Marlin
Marlin is an optimized firmware for RepRap 3D printers based on the Arduino platform. | Many commercial 3D printers come with Marlin installed. Check with your vendor if you need source code for your specific machine.
Stars: ✭ 12,217 (+9297.69%)
Mutual labels:  arduino
Ai tips esp8266
Code from my "ESP8266 Tips & Tricks" tutorial series on YouTube.
Stars: ✭ 129 (-0.77%)
Mutual labels:  arduino
Adafruit io arduino
Arduino library to access Adafruit IO from WiFi, cellular, and ethernet modules.
Stars: ✭ 123 (-5.38%)
Mutual labels:  arduino
Arduinosim800l
Arduino HTTP & FTP client for SIM800L/SIM800 boards to perform GET and POST requests to a JSON API as well as FTP uploads.
Stars: ✭ 127 (-2.31%)
Mutual labels:  arduino
Ad8232 heart rate monitor
AD8232 Heart Rate Monitor
Stars: ✭ 128 (-1.54%)
Mutual labels:  arduino
Tpmgenie
TPM Genie is an I2C bus interposer for discrete Trusted Platform Modules
Stars: ✭ 124 (-4.62%)
Mutual labels:  arduino
Server Go
🎨OpenIoTHub Server[内网穿透和物联网设备管理服务器]
Stars: ✭ 127 (-2.31%)
Mutual labels:  arduino

ArduinoUniqueID

This Library gets the Unique ID / Manufacture Serial Number from the Atmel AVR, SAM, SAMD, STM32, and ESP Microcontroller.

Build Status

Microcontrollers

ArduinoUniqueID supports the Microcontrollers.

Installation

Examples

The library comes with examples. After installing the library you need to restart the Arduino IDE before they can be found under File > Examples > ArduinoUniqueID.


Reference

Include Library

#include <ArduinoUniqueID.h>

Variable: UniqueID & UniqueIDsize

UniqueID has UniqueIDsize bytes array of the Unique Serial ID.

for(size_t i = 0; i < UniqueIDsize; i++)
  Serial.println(UniqueID[i], HEX);

Method: UniqueIDdump

Print the hexadecimal bytes of the Unique Serial ID on the Stream.

void UniqueIDdump(Stream);

Variable: UniqueID8

UniqueID8 has the last 8 bytes array of the Unique Serial ID.

for(size_t i = 0; i < 8; i++)
  Serial.println(UniqueID8[i], HEX);

Method: UniqueID8dump

Print the last eight hexadecimal bytes of the Unique Serial ID on the Stream.

void UniqueID8dump(Stream);

Do you like this library? Please star this project on GitHub!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].