项目作者: furrysalamander

项目描述 :
ESP32 UUID4 Generator Library
高级语言: C
项目地址: git://github.com/furrysalamander/esp-uuid.git
创建时间: 2019-08-28T15:47:36Z
项目社区:https://github.com/furrysalamander/esp-uuid

开源协议:MIT License

下载


esp-uuid

ESP32 UUID4 Generator Library

This library generates RFC 4122 UUIDs.

Just include the header and you’re good to go.

There are three functions in the library:

  • StringUUIDGen()
    • Returns a String with a UUID in it.
  • UUIDGen(char *returnUUID)
    • Fills returnUUID with a UUID. returnUUID should be at least 37 characters long. Doesn’t use strings.
  • IntToHex(const unsigned int inInt, char *returnVar)
    • Used internally to generate a hex string from an integer.