#define OzOLED_Max_X 128 //128 Pixels
#define OzOLED_Max_Y 32 //64 Pixels
#define OLED_ADDRESS 0x3C
// registers
#define OzOLED_COMMAND_MODE 0x80
#define OzOLED_DATA_MODE 0x40
#define OLED_INIT_LEN 12
const uint8_t OLED_INIT_CMD[] PROGMEM = {
0xA8, 0x1F, // set multiplex (HEIGHT-1): 0x1F for 128x32, 0x3F for 128x64
0x22, 0x00, 0x03, // set min and max page
0x20, 0x00, // set horizontal memory addressing mode
0xDA, 0x02, // set COM pins hardware configuration to sequential
0x8D, 0x14, // enable charge pump
0xAF, // switch on OLED
0xA1, 0xC8 // flip the screen
};
void sendCommand(byte command){
TinyWireM.beginTransmission(OLED_ADDRESS); // begin transmitting
TinyWireM.send(OzOLED_COMMAND_MODE);//data mode
TinyWireM.send(command);
TinyWireM.endTransmission(); // stop transmitting
}
void setCursorXY(byte X, byte Y){
// Y up to down, unit: 1 page (8 pixels)
// X left to right, unit: 1 seg (1 pixel)
sendCommand(0x00 + (X & 0x0F)); //set column lower address
sendCommand(0x10 + ((X>>4)&0x0F)); //set column higher address
sendCommand(0xB0 + Y); //set page address
}
void drawBitmap(const byte *bitmap, byte X, byte Y, uint8_t w, uint8_t h){
setCursorXY(X, Y);
for(uint8_t i = 0; i<h; i++) {
TinyWireM.beginTransmission(OLED_ADDRESS); // begin transmitting
TinyWireM.send(OzOLED_DATA_MODE);//data mode
for (uint8_t j = 0; j< w; j++){
if (bitmap==NULL){
// clear area
TinyWireM.send(0);
}
else{
TinyWireM.send(pgm_read_byte(&bitmap[i*w+j]));
}
}
TinyWireM.endTransmission(); // stop transmitting
setCursorXY(X, ++Y);
}
}
void init(){
TinyWireM.begin();
for (uint8_t i = 0; i < OLED_INIT_LEN; i++){
sendCommand(pgm_read_byte(&OLED_INIT_CMD[i]));
}
}