Gemphet8 ; 8-polyphonic synthesizer control application

Dependencies:   MIDI REnc button mbed

Revision:
2:3514a8b850dd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/I2CEEPROM/I2CEEprom.h	Sun Aug 10 23:41:05 2014 +0000
@@ -0,0 +1,15 @@
+// http://robot.tamagawa.ac.jp:8080/cyber/mbed/i2c_memory.html
+
+#include "mbed.h"
+// 24LC64 の書き込み、読み込みテスト
+
+class I2CEEprom : public I2C
+{
+private:
+  unsigned char addr;
+public:
+  I2CEEprom();
+  I2CEEprom(PinName data, PinName clock, int address);
+  void write(unsigned int address,  unsigned char data);
+  unsigned char read(unsigned int address);
+};