add storage functions
This commit is contained in:
@ -687,5 +687,22 @@
|
||||
"serial.writeString": "Send a piece of text through the serial connection.",
|
||||
"serial.writeValue": "Write a name:value pair as a line to the serial port.",
|
||||
"serial.writeValue|param|name": "name of the value stream, eg: x",
|
||||
"serial.writeValue|param|value": "to write"
|
||||
"serial.writeValue|param|value": "to write",
|
||||
"storage": "Provides access to persistent storage functionality.\n\r\nProvides access to persistent storage functionality.",
|
||||
"storage.getNumber": "Reads a key value pair from the non volatile storage as a number",
|
||||
"storage.getNumber|param|key": "the key for accesing the value",
|
||||
"storage.getString": "Reads a key value pair from the non volatile storage as a string",
|
||||
"storage.getString|param|key": "the key for accesing the value",
|
||||
"storage.getValue": "Reads a key value pair from the non volatile storage",
|
||||
"storage.getValue|param|key": "the key for accesing the value",
|
||||
"storage.putString": "Saves a key value pair in the non volatile storage",
|
||||
"storage.putString|param|key": "the key for accesing the value",
|
||||
"storage.putString|param|value": "value to store",
|
||||
"storage.putValue": "Saves a key value pair in the non volatile storage",
|
||||
"storage.putValue|param|key": "the key for accesing the value",
|
||||
"storage.putValue|param|value": "value to store",
|
||||
"storage.remove": "Reads a key value pair from the non volatile storage",
|
||||
"storage.removeKey": "Deletes the key from the non volatile storage",
|
||||
"storage.removeKey|param|key": "the key for accesing the value",
|
||||
"storage.remove|param|key": "the key for accesing the value"
|
||||
}
|
@ -254,6 +254,13 @@
|
||||
"PulseValue.Low|block": "low",
|
||||
"Rotation.Pitch|block": "pitch",
|
||||
"Rotation.Roll|block": "roll",
|
||||
"StorageSlots.s1|block": "Slot 1",
|
||||
"StorageSlots.s2|block": "Slot 2",
|
||||
"StorageSlots.s3|block": "Slot 3",
|
||||
"StorageSlots.s4|block": "Slot 4",
|
||||
"StorageSlots.s5|block": "Slot 5",
|
||||
"StorageSlots.s6|block": "Slot 6",
|
||||
"StorageSlots.s7|block": "Slot 7",
|
||||
"String.charAt|block": "char from %this=text|at %pos",
|
||||
"String.compare|block": "compare %this=text| to %that",
|
||||
"String.fromCharCode|block": "text from char code %code",
|
||||
@ -440,6 +447,14 @@
|
||||
"serial.writeString|block": "serial|write string %text",
|
||||
"serial.writeValue|block": "serial|write value %name|= %value",
|
||||
"serial|block": "serial",
|
||||
"storage.getNumber|block": "read from %key as number",
|
||||
"storage.getString|block": "read from %key",
|
||||
"storage.getValue|block": "get number from %key",
|
||||
"storage.putString|block": "Save into %key a value of %value",
|
||||
"storage.putValue|block": "Put into %key a value of %value as number",
|
||||
"storage.removeKey|block": "Clear %key",
|
||||
"storage.remove|block": "remove %key",
|
||||
"storage|block": "storage",
|
||||
"{id:category}AnalogInPin": "AnalogInPin",
|
||||
"{id:category}AnalogOutPin": "AnalogOutPin",
|
||||
"{id:category}Array": "Array",
|
||||
@ -471,19 +486,23 @@
|
||||
"{id:category}Pins": "Pins",
|
||||
"{id:category}PwmOnlyPin": "PwmOnlyPin",
|
||||
"{id:category}Serial": "Serial",
|
||||
"{id:category}Storage": "Storage",
|
||||
"{id:category}String": "String",
|
||||
"{id:category}Text": "Text",
|
||||
"{id:category}_py": "_py",
|
||||
"{id:group}Configuration": "Configuration",
|
||||
"{id:group}Control": "Control",
|
||||
"{id:group}Events": "Events",
|
||||
"{id:group}Get": "Get",
|
||||
"{id:group}LED matrix": "LED matrix",
|
||||
"{id:group}Melody": "Melody",
|
||||
"{id:group}Melody Advanced": "Melody Advanced",
|
||||
"{id:group}Modify": "Modify",
|
||||
"{id:group}Operations": "Operations",
|
||||
"{id:group}Put": "Put",
|
||||
"{id:group}RGB LED": "RGB LED",
|
||||
"{id:group}Read": "Read",
|
||||
"{id:group}Remove": "Remove",
|
||||
"{id:group}Sensors": "Sensors",
|
||||
"{id:group}Silence": "Silence",
|
||||
"{id:group}States": "States",
|
||||
|
Reference in New Issue
Block a user