Hallo,

mich quält mal wieder C++.

Ich habe ein Array:

uint16_t meineWerte[3];

Jetzt will ich das speichern:

x.write(meineWerte[0],6);

Das ist wohl in Ordnung so.

Bloß, wie lese ich das zurück?

Idee:

xyzSet[0]=f.read();


error: incompatible types in assignment of 'int' to 'uint8_t [3] {aka unsigned char [3]}'

xyzSet[0]=f.read();


MfG