Loading...
Searching...
No Matches
st7735_internal.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2018 Koen Zandberg
3 * SPDX-FileCopyrightText: 2023 Gunar Schorcht
4 * SPDX-License-Identifier: LGPL-2.1-only
5 */
6
7#pragma once
8
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26#include "st77xx_internal.h"
27
34#define LCD_CMD_INVCTR 0xb4
35#define LCD_CMD_PWCTRL3 0xc2
36#define LCD_CMD_PWCTRL4 0xc3
37#define LCD_CMD_PWCTRL5 0xc4
38#define LCD_CMD_PWCTRL6 0xfc
40
44int st7735_init(lcd_t *dev, const lcd_params_t *params);
45
46#ifdef __cplusplus
47}
48#endif
int st7735_init(lcd_t *dev, const lcd_params_t *params)
ST7735 controller specific initialization part.
Internal definitions that are common for all ST77xx controllers.
Device initialization parameters.
Definition lcd.h:112
Device descriptor for a lcd.
Definition lcd.h:175