-
Datei
init_system.c
tm_stm32f4_rtc.h" #include "tm_stm32f4_bmp180.h" #include "tm_stm32f4_disco.h" #include "tm_stm32f4_ili9341.h" #include "tm_stm32f4_ds18b20.h" #include "config.h" #include "init_system.h" #include "graphik.h" #include "tools.h" #include "processing.h" // LEDs aktivieren void __attribute__((optimize(0)
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
_4.0_User_Setup.h
######################## // Only define one driver, the other ones must be commented out //#define ILI9341_DRIVER //#define ST7735_DRIVER //#define ILI9163_DRIVER //#define S6D02A1_DRIVER #define RPI_ILI9486_DRIVER // 20MHz maximum SPI //#define HX8357D_DRIVER //#define ILI9481_DRIVER //#define ILI9486
in „Esp32 Display“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Test.ino
include "SPI.h" // SPI interface #include "Adafruit_GFX.h" // Display functions #include "Adafruit_ILI9341.h" // Display specific functions and constants #include <Fonts/FreeMonoBoldOblique12pt7b.h> // Used font // Bluetooth #include <BLEDevice.h> #include <BLEServer.h> #include <BLE2902.h> #include
in „ESP32 Interrupts“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
error.txt
-fpack-struct -fshort-enums -MD -MP -MT ILI9341.o -MF dep/ILI9341.o.d -c ILI9341.c avr-gcc -mmcu=atmega328 -Wall -I. -Ibitmaps -DF_CPU=8000000UL -DOSC_STARTUP=16384 -gdwarf-2 -std=gnu99 -Os -mcall-prologues -funsigned-char -funsigned-bitfields
-
Datei
error.txt
-fpack-struct -fshort-enums -MD -MP -MT ILI9341.o -MF dep/ILI9341.o.d -c ILI9341.c avr-gcc -mmcu=atmega328 -Wall -I. -Ibitmaps -DF_CPU=8000000UL -DOSC_STARTUP=16384 -gdwarf-2 -std=gnu99 -Os -mcall-prologues -funsigned-char -funsigned-bitfields
-
Datei
error.txt
-fpack-struct -fshort-enums -MD -MP -MT ILI9341.o -MF dep/ILI9341.o.d -c ILI9341.c avr-gcc -mmcu=atmega328 -Wall -I. -Ibitmaps -DF_CPU=8000000UL -DOSC_STARTUP=16384 -gdwarf-2 -std=gnu99 -Os -mcall-prologues -funsigned-char -funsigned-bitfields
-
Datei
TFT_meters.ino
/* from https://github.com/Bodmer/TFT_ILI9341/blob/master/examples/TFT_Meters/TFT_Meters.ino reworked for ARDUINO DUE using the Adafruit Libraries TFT used: ILI9340C libraries used: https://github.com/adafruit/Adafruit_ILI9340 https://github.com
in „2.2'TFT ILI9340 und Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Files.txt
HAL_SPI_Transmit(&hspi2, &data, 1, 1000); // Pass the address of the data CS_Inactive(); } void Display::ILI9341_Reset(void) { RESET_L(); HAL_Delay(10); RESET_H(); CS_Active(); LED_H(); } // Software reset (closes applications and clears any data in random access memory (RAM)) void Display::ILI9341_SoftReset
in „Probleme das Ili9341 Board zum laufen zu bekommen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Solar_v2.5_OTA_ext_LOLIN.ino
ifdef LOLIN_TFT_SHIED #define TFT_DC D8 #define TFT_CS D0 #define TS_CS D3 #define TFT_RST -1 Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_RST); XPT2046_Touchscreen ts(TS_CS); #else // Pins for the ILI9341 and ESP8266 (D1 mini) #define TFT_DC D2 #define TFT_CS D1 #define TFT_LED D8 #define TOUCH_CS D3 #define TOUCH_IRQ D4 Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC) ; // instance for the tft-screen XPT2046_Touchscreen ts(TOUCH_CS, TOUCH_IRQ) ; // instance for touch-screen #endif // all my known colors for ILI9341 TFT (
in „Unerwartet Kompilierungsfehler ESP8266 / Funkwetteranzeige treibt mich in den Wahnsinn“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
TFT_Test_neu.ino
//Arduino LCD TFT 2,4" Touch Display ILI9341 #include "Adafruit_GFX_AS.h" #include "Adafruit_ILI9341_8bit_AS.h" #include "TouchScreen.h" #define LCD_CS A3 #define LCD_CD A2 #define LCD_WR A1 #define LCD_RD A0 #define LCD_RESET A4 #define YP
in „LCD mit ILI9325 funktioniert nicht!“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.c
stdint.h> // StdPeriph Lib + CMSIS #include <stm32f4xx.h> #include <stm32f4xx_i2c.h> #include "tm_stm32f4_ili9341.h" #include "eeprom.h" /* ------------- DEFINES ------------------ */ #define E2P_DATA_VALID 0xaf // Kennung für gültige Daten #define E2P_DV_ADR 0xffff // Adresse der Kennung // Timeout und E2PROM
in „Lebensdauer von lokalen Variablen“ · Softwareentwicklung ·
-
Datei
Code_Temperatur_Touch.txt
identifier == 0x7575) \{\ Serial.println(F("Found HX8347G LCD driver"));\ \} else if (identifier == 0x9341) \{\ Serial.println(F("Found ILI9341 LCD driver"));\ \} else if (identifier == 0x8357) \{\ Serial.println(F("Found HX8357D LCD driver"));\ \} else if (identifier == 0x0101)\ \{\ identifier = 0x9341;\ Serial.println(F("Found 0x9341 LCD driver"));\ \} else \{\ identifier = 0x9341;\ \}\ \ tft.begin(identifier);\ tft.fillScreen(BLACK);\ \ tft.setRotation(2); //Ausrichtung Schrift\ tft.setTextColor(WHITE, BLACK); //Schriftart mit
in „Arduino Auswertung Touchscreen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
DisplayString.ino
tft.reset(); uint16_t identifier = tft.readID(); if(identifier == 0x9325) { Serial.println(F("Found ILI9325 LCD driver")); } else if(identifier == 0x9328) { Serial.println(F("Found ILI9328 LCD driver")); } else if(identifier == 0x4535) { Serial.println(F("Found LGDP4535 LCD driver")); }else if(identifier == 0x7575) { Serial.println(F("Found HX8347G LCD driver")); } else if(identifier == 0x9341) { Serial.println(F("Found ILI9341 LCD driver")); } else if(identifier == 0x8357) { Serial.println(F("Found HX8357D LCD driver")); } else if(identifier==0x0101) { identifier=0x9341; Serial.println(F
in „2.8 TFT von egeloo“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
STM32F7_discovery_clock.ino
/* * !!! use STM32GENERIC framework !!! from https://github.com/Bodmer/TFT_ILI9341/tree/master/examples/TFT_Clock reworked for ARDUINO DUE using the Adafruit Libraries Hardware: STM32F7 Discovery libraries used: https://github.com/adafruit/Adafruit_ILI9340 https://github.com/adafruit
in „STM32F746 Discovery ARDUINO“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
CYD_dispalyChipTemperature.py
display test showing ESP chip temperature external libraries: https://github.com/rdagger/micropython-ili9341 2026-01-25 mchris ''' from ili9341 import Display, color565 import esp32 from machine import Pin, SPI import time display_spi = SPI(1, baudrate=80000000, sck=Pin(14), mosi=Pin(13)) # The library
-
Datei
CYD_BME280_receiver.py
BME280 values Communication Method: ESPNOW external libraries: https://github.com/rdagger/micropython-ili9341 2026-01-26 mchris ''' import network import espnow import struct from ili9341 import Display, color565 import esp32 from machine import Pin, SPI import time display_spi = SPI(1, baudrate=80000000
-
Bild
Tabelle mit Produktspezifikationen eines Displays
Name Parameter Display Color RGB 65K color SKU MSP2202 Screen Size 2.2(inch) Type TFT TZT Driver IC ILI9341 Resolution 320*240 (Pixel) Module Interface 4-wire SPI interface Active Area (AA area) 33.84x45.12(mm) Module PCB Size 40.10x67.20(mm) Operating Temperature -20°C~60°C Storage Temperature -30°C~
in „Wer hat ein ILI9341 Display mit 5v im Betrieb?“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Bild
Datenblatt-Ausschnitt Read Display MADCTL Befehl
8.2.6. Read Display MADCTL (0Bh) 0Bh Command D/CX WRX D17-D7 D6 D5 D4 D3 D2 D1 D0 HEX 0 1 1 XX 0 0 0 1 1 0 0Bh 1st Parameter XX D7 D6 D5 D4 D3 D2 D1 D0 00 2nd Parameter Description Bit Value Description Comment D7 1 0 Top to Bottom (When MADCTL B7='1') ... D7 0 1 Bottom to Bottom (When MADCTL B7='0') ... D6 1 0 Left to Right (When MADCTL B6='1') ... D6 0 1 Right to Left (When MADCTL B6='0') ... D5 1 0 Normal Mode (When MADCTL B5='1') ... D5 0 1 Reverse Mode (When MADCTL B5='0') ... D4 1 0 LCD Refresh Top to Bottom (When MADCTL B4='1') ... D4 0 1 LCD Refresh Bottom to Top (When MADCTL B4='0') .
in „ili9341 2.8 Zoll Modul Problem“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
ili9341.c
/* * ili9341.c * * Created on: 12 �нв. 2015 г. * Author: Sem */ #include "ili9341.h" static void transmitCmdData(uint8_t cmd, uint8_t * data, uint8_t numDataByte) { TFT_CS_ACTIVE; TFT_DC_COMMAND; hspi_TxRx
in „IDE für ESP8266 mit vielen Example“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
HCT595.c
Reset) */ #define HC595_PWM GPIOA #define HC595_OE GPIO_Pin_9 /* A9: LED HC595_OE (PWM) */ #define ILI9341_PWM GPIOA #define ILI9341_OE GPIO_Pin_8 /* A8: Display (PWM) */ /* ---------------- Typen Deklarationen ------------------- */ #define NSHIFT 40 /* Anzahl Bits im Schiebregister */ #define NLEDSBAR
in „EmBitz Debugging Problem mit STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
tft.c
_9341; case 0x9341: common_9341: _lcd_capable = AUTO_READINC | MIPI_DCS_REV1 | MV_AXIS | READ_24BITS; static const uint8_t ILI9341_regValues_2_4[] = { // BOE 2.4" 0xF6, 3, 0x01, 0x01, 0x00, //Interface Control
in „4DLCD-32QA mit STM32 initialisieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
test.c
SineAmplitude * sin ((long double) i / SineFrequency); printfTiny ("SINUS %i %i ", i, (int) s); // ILI9341_DrawPixel (i, 75 + (int) s ,YELLOW); // ILI9341_DrawPixel (i, 175 + (int) s ,GREEN); } while (1) {} } /* ---- xtoa Konstanten (Subtraktion)---- */ static const unsigned long dv [] = { // 4294967296
in „EMBITZ math.h“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
armbian_modules.txt
panel-raydium-rm68200 panel-arm-versatile panel-lvds panel-simple panel-sitronix-st7789v panel-ilitek-ili9322 panel-ilitek-ili9881c ttm lima tinydrm mi0283qt ili9341 mipi-dbi analogix-anx6345 analogix_dp_i2c sun6i-dsi pwm_bl lcd generic_bl block2mtd mtd_blkdevs spinand nandcore mtdblock mtdblock_ro gnss-sirf
in „Samba auf Banana Pi Pro installieren“ · PC Hard- und Software ·
-
PDF
TFT-SPI-ILI9341.pdf
TFT-SPI-ILI9341.pdf
in „ILI9341 langsam Verbesserungsvorschläge?“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
2.2 Zoll SPI TFT Module in Verpackung
2.2"SPI TFT Module Driver:ILI9341 Dots:240X320 QC:Pass Touch:No SKU:MSP2202
in „V: DIY BMS V4.4“ · Markt · · Fotos
-
Bild
Aufkleber eines 2.8 Zoll SPI TFT Moduls
2.8"SPI TFT Module Driver: ILI9341 Bus: SPI Dots: 240X320 Touch: Yes SKU:MSP2807
in „V: DIY BMS V4.4“ · Markt · · Fotos
-
Bild
2.8 Zoll SPI TFT Display Modul in Verpackung
2.8'SPI TFT Module Driver: ILI9341 Bus: SPI Dots: 240X320 Touch: Yes SKU: MSP2807 HSD028309-C2
in „V: DIY BMS V4.4“ · Markt · · Fotos
-
Bild
Ausschnitt eines Arduino-Programm-Quellcodes
Serial.begin(38400); ts.begin(); ts.setRotation(0); tft.begin(); tft.setRotation(2); tft.fillScreen(ILI9341_BLACK);
in „Hilfe 2.8" LCD Problem“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Bild
Warenkorb eines Online-Shops für ein Touch Panel
Choice TENSTAR ROBOT Store > Touch panel 2,4 2,8 Zoll spi tft lcd ili9341 Treiber chip Serial Port Modul ... 2.8 Inch Touch Panel 1,47 € x1 Gesamtsumme:3,46 € In den Warenkorb Löschen 10-Tage-Lieferung · Kostenlose Rückgabe · Pünktlichkeitsgarantie
in „Hilfe 2.8" LCD Problem“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
main.c
1.7.4 // GCC : 4.7 2012q4 // Module : CMSIS_BOOT, M4_CMSIS_CORE // Funktion : Demo der LCD-Library (ILI9341) // Hinweis : Diese zwei Files muessen auf 8MHz stehen // "cmsis_boot/stm32f4xx.h" // "cmsis_boot/system_stm32f4xx.c" // In Configuration diese Define hinzufügen : // "STM32F429_439xx" , "__ASSEMBLY
in „Random Number Generator läuft nicht richtig,stm32f429“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Beschriftete Übersicht der Project Lab v3 Platine
Transducer BME688 (Temp, Pressure, Humidity Sensor) BMI270 (Inertial Measurement Unit/Accelerometer) ILI9341 240x320 Display Meadow F7 Core-Compute Module mikro BUS Grove Analog Grove Digital/UART Grove Digital Grove I2C STEMMA QT Qwiic USB-C Boot/Reset Add-on Module BH1750 (Light Sensor) RS-485 Driver
in „Wilderness Labs DevCamp – v1 stabil, neue Hardware, mehr zur Cloud“ · Softwareentwicklung · · Screenshots
-
Bild
Fritzing-Schaltplan mit STM32F411RE und LCD-Display
ILI9341 2.2" GND 3.3V LCD CS > B10 0.47µF LCD Reset > B4 LCD A0 > B5 57kOhm total LCD MOSI > A10 SD CS > A9 LCD SCK > B0 SD MOSI > B15 LCD MISO > unused SD CS > PC7 Flash CS > unused Up button > A8 Down
in „Signalplotter mit STM32, LCD und SD Karte - ähnlich einem Scope“ · Projekte & Code · · Screenshots
-
Datei
pixelArray.txt
{ int32_t x, y; for(y = area->y1; y <= area->y2; y++) { for(x = area->x1; x <= area->x2; x++) { //ILI9341_DrawPixel(x, y, *color_p); set_pixel(x, y, *color_p); /* Put a pixel to the display.*/ color_p++; } } lv_disp_flush_ready(disp); /* Indicate you are ready with the flushing*/ }
in „littlevGL Graphiclib, benutzt die hier jemand?“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
bom.pdf
1812 3 10µf 16V SMD 1 33k 1206 1 Encoder w. Switch 12x15mm 1 22µF 50V SMD 1 20k 1206 1 TFT LCD 2.8" ILI9341 1 180k 1206 1 Socket Strip 14 Pin f. Display 1 3k3 1206 1 Pinheader 2x4 Pin 1 2k2 1206 1 Pinheader 10 Pin 1 56k 1206 5 Pinheader 8 Pin 1 27k 1206 1 Textool 14 Pin 3 470k 0,10% 1206 3 680R 0,10%
-
Datei
rtc_user.h
#ifndef RTC_USER_H_INCLUDED #define RTC_USER_H_INCLUDED #include "defines.h" #include "tm_stm32f4_ili9341.h" #include "tm_stm32f4_delay.h" #include "tm_stm32f4_rtc.h" #include "tm_stm32f4_general.h" #include "tm_stm32f4_disco.h" #include "tm_stm32f4_gpio.h" #endif /* RTC_USER_H_INCLUDED */ #ifndef _
in „Code: Berechnung von Sonnenauf- und Untergang mit einem uC“ · Projekte & Code ·
-
Datei
config_328.h
I2C_SDA PD0 /* port pin used for SDA */ #define I2C_SCL PD1 /* port pin used for SCL */ #endif /* * ILI9163 * - 4 wire SPI interface using bit-bang SPI */ #if 0 #define LCD_ILI9163 /* display controller ILI9163 */ #define LCD_GRAPHIC /* graphic display */ #define LCD_COLOR /* color display */ #define
in „ComponentTester-1.42m problem“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
config_328.h
I2C_SDA PD0 /* port pin used for SDA */ #define I2C_SCL PD1 /* port pin used for SCL */ #endif /* * ILI9163 * - 4 wire SPI interface using bit-bang SPI */ #if 0 #define LCD_ILI9163 /* display controller ILI9163 */ #define LCD_GRAPHIC /* graphic display */ #define LCD_COLOR /* color display */ #define
-
PDF
Datasheet_AZ-Touch_MOD_Rev_B.pdf
(6,09 cm) or 2.8 inch (7,10cm) tft screen with 320 x 240 pixel resolution ● SPI display controller ILI9341 ● Resitive touch with SPI touch controller XPT2046 ● Integrated 5V/1.4A voltage regulator (Vin 9...35V DC) ● Integrated prototyping area ● 6-pin removable terminal block for prototyping area & power
in „Stromversorgung ArduiTouch MOD“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
PicoMite_User_Manual.pdf
pin (when pulled low). CS = Display Chip Select pin. Any free pins can be used. OPTION LCDPANEL ILI9341, OR, DC, RESET, CS Initialises a TFT display using the ILI9341 controller. This supports 320 * 240 resolution. Displays using this controller are capable of transparent text and will work with the
in „allgemeine PicoMite Anfängerfragen“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
PicoMite_User_Manual_4_.pdf
pin (when pulled low). CS = Display Chip Select pin. Any free pins can be used. OPTION LCDPANEL ILI9341, OR, DC, RESET, CS Initialises a TFT display using the ILI9341 controller. This supports 320 * 240 resolution. Displays using this controller are capable of transparent text and will work with the
in „Qual der Wahl - Sensoren Auswertung auf Display ("Analog")“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd_init.h
define LCD_INIT_H_INCLUDED /* ------------------------------------------------------- Grafik Display ILI9341 Initialisierung der Hardware (C) Christian Julius 3.2016 ------------------------------------------------------- */ #include "stm32f10x_conf.h" /* ------------ Standard Include Files -----------
in „Basteltip: STM32F103 DIP40 Board“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd_init.h
define LCD_INIT_H_INCLUDED /* ------------------------------------------------------- Grafik Display ILI9341 Initialisierung der Hardware (C) Christian Julius 3.2016 ------------------------------------------------------- */ #include "stm32f10x_conf.h" /* ------------ Standard Include Files -----------
in „Lebensdauer von lokalen Variablen“ · Softwareentwicklung ·
-
Datei
config.h
Transformiert Koordinaten auf 0,0 bezogen auf linke, untere Ecke #define TransX(x) (x) #define TransY(y) (ILI9341_WIDTH - (y)) #define round(x) ((x) >= 0 ? (long)((x) + 0.5) : (long)((x)-0.5)) // Runded einen float Wert #define HasChanged(x,y) (abs((float)x-(float)(y) > 0.09)) // Vergleicht zwei Float Werte
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
config.h
Transformiert Koordinaten auf 0,0 bezogen auf linke, untere Ecke #define TransX(x) (x) #define TransY(y) (ILI9341_WIDTH - (y)) #define round(x) ((x) >= 0 ? (long)((x) + 0.5) : (long)((x)-0.5)) // Runded einen float Wert #define HasChanged(x,y) (abs(x-y) > 0.09) // Vergleicht zwei Float Werte auf 0.1 Abstand
in „Organisation der Header und Includes“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f429i_discovery_lcd.c
Application Team * @version V1.0.1 * @date 28-October-2013 * @brief This file includes the LCD driver for ILI9341 Liquid Crystal * Display Modules of STM32F429I-DISCO kit (MB1075). ****************************************************************************** * @attention * * <h2><center>© COPYRIGHT 2013
in „STM32F429 Display per SPI ansteuern“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
compile_Tasmota_stable_in_docker_container_versuch3.txt
Library.a Indexing .pio/build/tasmota/libe10/libFT5206_Library.a Compiling .pio/build/tasmota/libde0/ILI9341-gemu-1.0/ILI9341_2.cpp.o Compiling .pio/build/tasmota/lib351/IRremoteESP8266/IRac.cpp.o Compiling .pio/build/tasmota/lib351/IRremoteESP8266/IRrecv.cpp.o Archiving .pio/build/tasmota/lib104/libFrogmoreScd30
in „Dlock 11827 und Tasmota - compilieren für FW-Update“ · Haus & Smart Home ·
-
PDF
Elektronik_Sortimente.pdf
5x OKLT1W12NC Displays 2-3x a-Si TFT LCD Single Chip Driver 240RGBx320 Resolution and 262K color (ILI9341) 2-3x DOT MATRIX LCD MODULE 16 CHARACTER, 2 LINE DISPLAY (HD44780 oder 1602 LCD ggf. mit PCF8574) Mikrocontroller & Zubehör 5x NodeMCU ESP-12F (höchste Version mit CP2102 Chip) 5x D1 mini WeMos
in „Einkaufsliste für die Einrichtung eines Elektronik-Labors“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Getting_Started_with_the_Micromite.pdf
the keyword "ILI9341". The display that you purchase must look like that illustrated on the right. There are many variations for sale but the Micromite has been tested with the illustrated panel so you can be sure that it will work. Displays' using the ILI9341 controller come in three sizes (2.2, 2.4 and 2.8 inch diagonal measurement) and you can use whatever size that you want although you should be aware that most 2.2 inch displays to not include the
in „Suche Relais-Steuerung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
PICO-RX_1_.html
Spektrum- und Wasserfallanzeige </b></big><big><b>vorgeschlagenes </b><b>externes 2.4" OLED-Dispay ( ILI9341 ) anschliessen lässt.<br> </b></big><br> <hr width="100%" size="2"><big><b>Es folgen Angaben zu den von mir verwendeten etwas spezielleren Bauteilen und ggf. Angaben zu möglichen Bezugsquellen
-
Datei
meindef.h
); // if(temp.btf.bit6 == 1) temp1.btf[3].bit5 = 1; // return temp1.w; // Für 16 bit Farbe (so wie ILI9341) typedef struct{ u8 farbeB:5; // Farbe blau, bit 4:0 u8 farbeG:6; // Farbe grün, bit 10:5 u8 farbeR:5; // Farbe rot, bit 15:11 } bitfarbe565; typedef union{ u16 h ; // Farbe 16bit bitfarbe565 frb
in „I2C Display einfache Frage“ · Mikrocontroller und Digitale Elektronik ·