2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
23 #include "drivers/bus.h"
25 #define SCREEN_WIDTH 128
26 #define SCREEN_HEIGHT 64
30 #define HORIZONTAL_PADDING 1
31 #define VERTICAL_PADDING 1
33 #define CHARACTER_WIDTH_TOTAL (FONT_WIDTH + HORIZONTAL_PADDING)
34 #define CHARACTER_HEIGHT_TOTAL (FONT_HEIGHT + VERTICAL_PADDING)
36 #define SCREEN_CHARACTER_COLUMN_COUNT (SCREEN_WIDTH / CHARACTER_WIDTH_TOTAL)
37 #define SCREEN_CHARACTER_ROW_COUNT (SCREEN_HEIGHT / CHARACTER_HEIGHT_TOTAL)
39 #define VERTICAL_BARGRAPH_ZERO_CHARACTER (128 + 32)
40 #define VERTICAL_BARGRAPH_CHARACTER_COUNT 7
42 bool ug2864hsweg01InitI2C(const extDevice_t
*dev
);
44 void i2c_OLED_set_xy(const extDevice_t
*dev
, uint8_t col
, uint8_t row
);
45 void i2c_OLED_set_line(const extDevice_t
*dev
, uint8_t row
);
46 void i2c_OLED_send_char(const extDevice_t
*dev
, unsigned char ascii
);
47 void i2c_OLED_send_string(const extDevice_t
*dev
, const char *string
);
48 void i2c_OLED_clear_display(const extDevice_t
*dev
);
49 void i2c_OLED_clear_display_quick(const extDevice_t
*dev
);