I have updated the firmware here is the test results
>console.log(eeprom.a(eeprom.i2ca)); 2 =undefined >console.log(eeprom.i(0x64)); 80 =undefined >console.log(eeprom.cap); 256 =undefined >I2C2.writeTo(0x50,0); =undefined >I2C2.readFrom(0x50,8); =new Uint8Array([255, 255, 255, 255, 255, 255, 255, 255]) >I2C2.writeTo(0x50,0x64); =undefined >I2C2.readFrom(0x50,8); =new Uint8Array([77, 69, 82, 72, 65, 66, 65, 111])
>eeprom.write(0x64,"Merhaba") =7 >eeprom.read(0x64,7) =new Uint8Array([77, 101, 114, 104, 97, 98, 97])
I think it has been done.
@fobus started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I have updated the firmware here is the test results
I think it has been done.