#include "Aruno.h"
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
uno.eepromWrite(0,6);
unsigned char value = uno.eepromRead(0);
Serial.println(value);
}
void loop() {
// put your main code here, to run repeatedly:
}