mirror of
https://github.com/RQNG/WouoUI.git
synced 2025-06-17 13:07:54 +00:00
11 lines
133 B
C
11 lines
133 B
C
![]() |
class EEPROM {
|
||
|
public:
|
||
|
void write(int address, int data) {
|
||
|
|
||
|
}
|
||
|
|
||
|
int read(int address) {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
} EEPROM;
|