Ardupilot2/libraries/AP_Notify/Display_SSD1306_I2C.h

27 lines
677 B
C
Raw Normal View History

2015-12-22 17:16:19 -04:00
#pragma once
#include "Display.h"
#include "Display_OLED_I2C.h"
#include <AP_HAL/I2CDevice.h>
2015-12-22 17:16:19 -04:00
#define SSD1306_COLUMNS 128 // display columns
#define SSD1306_ROWS 64 // display rows
#define SSD1306_ROWS_PER_PAGE 8
2015-12-22 17:16:19 -04:00
class Display_SSD1306_I2C: public Display_OLED_I2C {
protected:
bool hw_init() override;
bool hw_update() override;
bool set_pixel(uint16_t x, uint16_t y) override;
bool clear_pixel(uint16_t x, uint16_t y) override;
bool clear_screen() override;
void _update_timer() override;
2015-12-22 17:16:19 -04:00
private:
AP_HAL::OwnPtr<AP_HAL::I2CDevice> _dev;
uint8_t _displaybuffer[SSD1306_COLUMNS * SSD1306_ROWS_PER_PAGE];
bool _need_hw_update;
2015-12-22 17:16:19 -04:00
};