@@ -62,12 +62,12 @@ Preferences directly supports the following data types:
62
62
+-------------------+-------------------+---------------+
63
63
| ULong | uint32_t | 4 |
64
64
+-------------------+-------------------+---------------+
65
+ | Float | float_t | 4 |
66
+ +-------------------+-------------------+---------------+
65
67
| Long64 | int64_t | 8 |
66
68
+-------------------+-------------------+---------------+
67
69
| ULong64 | uint64_t | 8 |
68
70
+-------------------+-------------------+---------------+
69
- | Float | float_t | 8 |
70
- +-------------------+-------------------+---------------+
71
71
| Double | double_t | 8 |
72
72
+-------------------+-------------------+---------------+
73
73
| | const char* | variable |
@@ -76,7 +76,6 @@ Preferences directly supports the following data types:
76
76
+-------------------+-------------------+---------------+
77
77
| Bytes | uint8_t | variable |
78
78
+-------------------+-------------------+---------------+
79
-
80
79
String values can be stored and retrieved either as an Arduino String or as a null terminated ``char`` array (c-string).
81
80
82
81
Bytes type is used for storing and retrieving an arbitrary number of bytes in a namespace.
@@ -258,6 +257,8 @@ Arduino-esp32 Preferences API
258
257
``putInt, putUInt ``
259
258
********************
260
259
``putLong, putULong ``
260
+ **********************
261
+ ``putFloat ``
261
262
**********************
262
263
263
264
Store a value against a given key in the currently open namespace.
@@ -288,8 +289,8 @@ Arduino-esp32 Preferences API
288
289
289
290
``putLong64, putULong64 ``
290
291
*************************
291
- ``putFloat, putDouble ``
292
- ***********************
292
+ ``putDouble ``
293
+ *************************
293
294
294
295
Store a value against a given key in the currently open namespace.
295
296
0 commit comments