Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 3.65 KB

README.md

File metadata and controls

39 lines (31 loc) · 3.65 KB

💾 107-Arduino-UniqueId

Arduino Library Badge Compile Examples Arduino Lint keywords.txt Checks General Formatting Checks Spell Check

This library provides a unique 64-bit ID over various Arduino platforms.

Such a feature is useful for the Cyphal protocol and it's Arduino port 107-Arduino-Cyphal but naturally can also be used in another context.

This library works for

Example

#include <107-Arduino-UniqueId.h>

void setup() {
  Serial.begin(115200);
  while (!Serial) { }

  Serial.println(OpenCyphalUniqueId);
}

void loop() { }