Table of Contents

EEWrite

Write data to non-volatile memory.

This feature is supported only on models with built-in FRAM.

Syntax

from cubloc import EEWrite
 
EEWrite(address: int, data: int | float | bytes | bytearray, byteLength: int)

Parameters

Exceptions

Example

from cubloc import EEWrite
 
# Example usage
EEWrite(1, 1, 1)