You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -41,25 +41,25 @@ ESP microcontroller has basically two versions, ESP8266 and ESP32, each one has
41
41
42
42
| UniqueID | ESP8266 | ESP32 |
43
43
| :-------: | :------: | :------:|
44
-
| Byte 0| Byte 0 | Byte 0|
45
-
| Byte 1| Byte 1 | Byte 1|
46
-
| Byte 2| Byte 2 | Byte 2|
47
-
| Byte 3| Byte 3 | Byte 3|
48
-
| Byte 4| - | Byte 4|
49
-
| Byte 5| - | Byte 5|
44
+
| Byte 0| Byte 0 | Byte 5|
45
+
| Byte 1| Byte 1 | Byte 4|
46
+
| Byte 2| Byte 2 | Byte 3|
47
+
| Byte 3| Byte 3 | Byte 2|
48
+
| Byte 4| - | Byte 1|
49
+
| Byte 5| - | Byte 0|
50
50
51
51
To make the variable UniqueID8 to work propably the library uses the default bytes to 0x00. <br/>
52
52
53
53
| UniqueID8 | ESP8266 | ESP32 |
54
54
| :-------: | :------: | :------:|
55
55
| Byte 0| 0x00 | 0x00 |
56
56
| Byte 1| 0x00 | 0x00 |
57
-
| Byte 2| 0x00 | Byte 0|
58
-
| Byte 3| 0x00 | Byte 1|
59
-
| Byte 4| Byte 0 | Byte 2|
60
-
| Byte 5| Byte 1 | Byte 3|
61
-
| Byte 6| Byte 2 | Byte 4|
62
-
| Byte 7| Byte 3 | Byte 5|
57
+
| Byte 2| 0x00 | Byte 5|
58
+
| Byte 3| 0x00 | Byte 4|
59
+
| Byte 4| Byte 0 | Byte 3|
60
+
| Byte 5| Byte 1 | Byte 2|
61
+
| Byte 6| Byte 2 | Byte 1|
62
+
| Byte 7| Byte 3 | Byte 0|
63
63
64
64
## Tested Microcontroller
65
65
@@ -73,7 +73,7 @@ This library only supports AVR Microcontroller and ESP Microcontroller.
73
73
## Installation
74
74
75
75
* Install the library by [Using the Library Manager](https://www.arduino.cc/en/Guide/Libraries#toc3)
76
-
***OR** by [Importing the .zip library](https://www.arduino.cc/en/Guide/Libraries#toc4) using either the [master](https://github.com/ricaun/ArduinoUniqueID/archive/1.0.4.zip) or one of the [releases](https://github.com/ricaun/ArduinoUniqueID/releases) ZIP files.
76
+
***OR** by [Importing the .zip library](https://www.arduino.cc/en/Guide/Libraries#toc4) using either the [master](https://github.com/ricaun/ArduinoUniqueID/archive/1.0.5.zip) or one of the [releases](https://github.com/ricaun/ArduinoUniqueID/releases) ZIP files.
0 commit comments