FIX CONFIG: BARO (#12476)
[betaflight.git] / src / main / drivers / display_ug2864hsweg01.h
blobc146c44e3c9b7fb31a6e92e8e683dbe78841b05c
1 /*
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)
8 * any later version.
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/>.
21 #pragma once
23 #include "drivers/bus.h"
25 #define SCREEN_WIDTH 128
26 #define SCREEN_HEIGHT 64
28 #define FONT_WIDTH 5
29 #define FONT_HEIGHT 7
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);