mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-29 10:17:15 +02:00
Refactoring EPS32NVS library to Preferences library (#199)
* Refactoring EPS32NVS library to Preferences library * Renaming all set* functions to put * Added functions for float, double and bool * Small redesign of Preferences API * added type to put* function names * for (u)int64_t used functions name with *(U)Long64 * added functions for long and unsigned long (same like int a unsigned int)
This commit is contained in:
54
libraries/Preferences/keywords.txt
Normal file
54
libraries/Preferences/keywords.txt
Normal file
@ -0,0 +1,54 @@
|
||||
#######################################
|
||||
# Syntax Coloring Map NVS
|
||||
#######################################
|
||||
|
||||
#######################################
|
||||
# Datatypes (KEYWORD1)
|
||||
#######################################
|
||||
|
||||
Preferences KEYWORD1
|
||||
|
||||
#######################################
|
||||
# Methods and Functions (KEYWORD2)
|
||||
#######################################
|
||||
begin KEYWORD2
|
||||
end KEYWORD2
|
||||
|
||||
clear KEYWORD2
|
||||
delete KEYWORD2
|
||||
|
||||
putChar KEYWORD2
|
||||
putUChar KEYWORD2
|
||||
putShort KEYWORD2
|
||||
putUShort KEYWORD2
|
||||
putInt KEYWORD2
|
||||
putUInt KEYWORD2
|
||||
putLong KEYWORD2
|
||||
putULong KEYWORD2
|
||||
putLong64 KEYWORD2
|
||||
putULong64 KEYWORD2
|
||||
putFloat KEYWORD2
|
||||
putDouble KEYWORD2
|
||||
putBool KEYWORD2
|
||||
putString KEYWORD2
|
||||
putBytes KEYWORD2
|
||||
|
||||
getChar KEYWORD2
|
||||
getUChar KEYWORD2
|
||||
getShort KEYWORD2
|
||||
getUShort KEYWORD2
|
||||
getInt KEYWORD2
|
||||
getUInt KEYWORD2
|
||||
getLong KEYWORD2
|
||||
getULong KEYWORD2
|
||||
getLong64 KEYWORD2
|
||||
getULong64 KEYWORD2
|
||||
getFloat KEYWORD2
|
||||
getDouble KEYWORD2
|
||||
getBool KEYWORD2
|
||||
getString KEYWORD2
|
||||
getBytes KEYWORD2
|
||||
|
||||
#######################################
|
||||
# Constants (LITERAL1)
|
||||
#######################################
|
Reference in New Issue
Block a user