This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| logicpython:cubloc_api:eewrite [2026/04/13 02:05] – [Exceptions] mfranklin | logicpython:cubloc_api:eewrite [2026/05/15 05:27] (current) – removed mfranklin | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== EEWrite ====== | ||
| - | |||
| - | Write data to non-volatile memory. | ||
| - | |||
| - | ===== Syntax ===== | ||
| - | |||
| - | <code python> | ||
| - | from cubloc import EEWrite | ||
| - | |||
| - | EEWrite(address: | ||
| - | </ | ||
| - | |||
| - | ===== Parameters ===== | ||
| - | |||
| - | * **address**: | ||
| - | * **data**: Integer, float, bytes, or bytearray value to write. | ||
| - | * **byteLength**: | ||
| - | |||
| - | ===== Exceptions ===== | ||
| - | |||
| - | * [[https:// | ||
| - | * [[https:// | ||
| - | |||
| - | ===== Example ===== | ||
| - | |||
| - | <code python> | ||
| - | from cubloc import EEWrite | ||
| - | |||
| - | # Example usage | ||
| - | EEWrite(1, 1, 1) | ||
| - | </ | ||
| - | |||
| - | ===== Related APIs ===== | ||
| - | |||
| - | * [[logicpython: | ||