This is an old revision of the document!
Write bytes into per-address backing files named like _ee_0000.
from cubloc import EEWrite EEWrite(address: int, data: int | float | bytes | bytearray, byteLength: int)
address (0 to 4095).Float writes require 4. Bytes and bytearray writes use the first byteLength bytes.address or byteLength is out of range, the write would extend past address 4095, a float write was requested with a byteLength other than 4, a float is not representable as a 32-bit value, or byteLength exceeds the source bytes length.from cubloc import EEWrite # Example usage EEWrite(1, 1, 1)