-
Datei
main.c
= 0; lcd_init(); lcd_clrscr(); wait(); while(1) { lcd_home(); //according to app note SHTxx should not be active more than 10% of the time to reduse self-heating to < 0.1 deg //also, no command should be sent
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcdpcf8574.h
Released under GPLv3. Please refer to LICENSE file for licensing information. References: + based on lcd library by Peter Fleury http://jump.to/fleury */ #ifndef F_CPU #define F_CPU 16000000UL #endif #ifndef LCD_H #define LCD_H #include <inttypes.h> #include <avr/pgmspace.h> #define LCD_PCF8574_INIT 1
in „Eclipse Kompilierung LCD Buchstabensalat“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
windmonitor.c
**************************************** // // Author: Daniel Buergin // // Copyrights: - UART und LCD Library von Peter Fleury (http://jump.to/fleury) // - Timerroutinen von www.bdmicro.com // // HW: AVR-MT-128 Board von www.olimex.com // // Timer0 ist ein 8-bit Timer (ATmega128 Manual ~Seite 103) /
in „Seiteneffekt mit LCD Library und Timer0“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
glcd02.S
Remarks: this Copyright must be included known Problems: none Version: 2.1. 2004 Description: Graphic Library for Nokia 6100 Display and compatible */ .nolist #include "glcd.inc" #include "regs.inc" .list .text .global glcdDisplayOff glcdDisplayOff: ldi T1, DISPLAY_OFF fcall glcdDispCommand ldi T1, SLEEP_IN
in „Nokia 6100 Grafiklibrary die Zweite“ · Projekte & Code ·
-
Datei
LCD4884.cpp
Editor : Lauren from DFRobot Date : 06.01.2012 =¡£= * Have the back light under control. * Update the library and sketch to compatible with IDE V1.0 and earlier */ #include "LCD4884.h" #include "font_6x8.h" #include "font_big.h" #if defined(ARDUINO) && ARDUINO >= 100 #include "Arduino.h" #else #include "WProgram.h" #include "WConstants.h" #endif extern "C" { #include <avr/pgmspace.h> #include <avr/io.h> } LCD4884::LCD4884() {}; LCD4884 lcd = LCD4884(); void LCD4884::backlight(unsigned char dat) { if(dat==1) digitalWrite(LCD_BL,HIGH); else digitalWrite(LCD_BL,LOW); } void LCD4884::LCD_init(void) { for(int
in „Probleme mit dem LCD 4884 Shield“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LC_008.asm
rlf bcd+0,f decfsz COUNT,f ; all done? goto b2bcd2 ; no, loop return ; yes ;*********** INITIALISE LCD MODULE 4 BIT MODE *********************** LCDINIT CALL MS100 ; WAIT FOR LCD MODULE HARDWARE RESET BCF RS ; REGISTER SELECT LOW BCF ENA ; ENABLE LINE LOW MOVLW 0x03 ; 1 call PB_dly CALL MS100 ; WAIT
in „Kann assembler file nicht builden“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Funksteckdosen-1.pdf
übernommen; diese betreffen z. B. die Taktfrequenz (hier: 4 MHz), ' die Baudrate, die Anschlüsse von LCD, I2C- und SPI-Modulen. ' ' ELRO-Funksteckdose ' Signale empfangen und dekodieren; Anzeige auf LCD ' 433MHz-Empfänger: Data an D.2 (INT0) ' '----------------------------------------------------------
in „Auseinandergenommene Geräte“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
main.c
BAUD / 16 - 0.5) ); sei(); _delay_ms(1); uputs0("--- SHTxx ---"); // uputs0("UART buffer test\n\r"); lcd_init(); lcd_clrscr(); wait(); while(1) { lcd_home(); //according to app note SHTxx should not be active more than 10% of the time to reduse self-heating to < 0.1 deg //also, no command should be sent
in „Hilfe, komme nicht weiter. Temperatur von 0 bis -1 Grad kein negatives Vorzeichen.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD-Gesamt.txt
library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity LCD_Ansteuerung is Port ( Clk : in STD_LOGIC; reset : in STD_LOGIC; lcd_db : out STD_LOGIC_VECTOR (3 downto 0); lcd_e : out STD_LOGIC; lcd_rw : out STD_LOGIC
in „LCD Ansteuerung mit spartan-3E starter“ · FPGA, VHDL & Co. ·
-
Datei
main.c
TCCR0 = (1<<CS01); //divide by 8 * 256 TIMSK = (1<<TOIE0); //enable timer interrupt //Inits zum Beginn lcd_ini(); //Display Init // Initialize UART library, pass baudrate and AVR cpu clock // with the macro // UART_BAUD_SELECT() (normal speed mode ) or // UART_BAUD_SELECT_DOUBLE_SPEED() ( double speed mode
in „ATMega8 USART geht nur bis 127“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ks0108.h
Remarks: this Copyright must be included * known Problems: none * Version: 1.1 * Description: Graphic Library for KS0108- (and compatible) based LCDs * */ #include <inttypes.h> #include <avr/pgmspace.h> #ifndef KS0108_H #define KS0108_H // Ports #define LCD_CMD_PORT PORTB // Command Output Register #define LCD_CMD_DIR DDRB // Data Direction Register for Command Port #define LCD_DATA_IN PIND // Data Input Register #define LCD_DATA_OUT PORTD // Data Output Register #define LCD_DATA_DIR DDRD // Data Direction
in „Grafik LCD am PortC geht am Port B nicht! atm8 & KS0108“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ks0108.h
Copyright must be included * known Problems: none * Version: (1.1) neu 1.2 * Description: Graphic Library for KS0108- (and compatible) based LCDs * überarbeitet: AS 5.4.2015 */ #include <inttypes.h> #include <avr/pgmspace.h> #ifndef KS0108_H #define KS0108_H // Ports #define LCD_CMD_PORT PORTD // Command Output Register #define LCD_CMD_DIR DDRD // Data Direction Register for Command Port #define LCD_DATA_IN PINB // Data Input Register #define LCD_DATA_OUT PORTB // Data Output Register #define LCD_DATA_DIR DDRB // Data Direction
in „KS 0108 - ein alter Bekannter - neu aufgelegt“ · Projekte & Code ·
-
Datei
ks0108.h
Remarks: this Copyright must be included * known Problems: none * Version: 1.1 * Description: Graphic Library for KS0108- (and compatible) based LCDs * */ #include <inttypes.h> #include <avr/pgmspace.h> #ifndef KS0108_H #define KS0108_H // Ports #define LCD_CMD_PORT PORTD // Command Output Register #define LCD_CMD_DIR DDRD // Data Direction Register for Command Port #define LCD_DATA_IN PINA // Data Input Register #define LCD_DATA_OUT PORTA // Data Output Register #define LCD_DATA_DIR DDRA // Data Direction
in „ATmega16 liefert kein Signal an allen Pins außer I2c“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ks0108.h
Remarks: this Copyright must be included * known Problems: none * Version: 1.1 * Description: Graphic Library for KS0108- (and compatible) based LCDs * */ #include <inttypes.h> #include <avr/pgmspace.h> #ifndef KS0108_H #define KS0108_H // Ports #define LCD_CMD_PORT PORTA // Command Output Register #define LCD_CMD_DIR DDRA // Data Direction Register for Command Port #define LCD_DATA_IN PINC // Data Input Register #define LCD_DATA_OUT PORTC // Data Output Register #define LCD_DATA_DIR DDRC // Data Direction
in „Display mit Controller KS0108 - Welche Datein?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ks0108.h
Remarks: this Copyright must be included * known Problems: none * Version: 1.1 * Description: Graphic Library for KS0108- (and compatible) based LCDs * */ #include <inttypes.h> #include <avr/pgmspace.h> #ifndef KS0108_H #define KS0108_H // Ports #define LCD_CMD_PORT PORTD // Command Output Register #define LCD_CMD_DIR DDRD // Data Direction Register for Command Port #define LCD_DATA_IN PINB // Data Input Register #define LCD_DATA_OUT PORTB // Data Output Register #define LCD_DATA_DIR DDRB // Data Direction
in „Display mit Controller KS0108 - Welche Datein?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Fertig_1_achse_ino.ino
#include <avr/io.h> #include <LiquidCrystal.h> LiquidCrystal lcd(9,8,7,6,5,4); // initialize the library with the numbers of the interface pinsint mstart = 9; /******************************* *** Alle Variablen definieren ** *******************************/ //Pin
in „Schrittmotorsteuerung mit Arduino, Regelung der Drehzahl leider Exponentiell“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
ks0108.h
this Copyright must be included * bekannte Probleme: none * Version: 1.1 * Beschreibung: Graphic Library for KS0108- (and compatible) based LCDs * * Änderungen: Nico Maußhardt, Jonas Bösking * */ // Allgemeine Libraries #include <inttypes.h> #include <avr/pgmspace.h> // Display Breite definieren #define LCD_WIDTH 128 #ifndef KS0108_H #define KS0108_H // Ports #define LCD_CMD_PORT PORTB // Command Output Register #define LCD_CMD_DIR DDRB // Data Direction Register für Command Port #define LCD_DATA_IN PINA
in „Atmega32 - PS/2 Keyboard - LCD“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd_message.vhd
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL; entity lcd_message is Port (clk: in std_logic; db : out std_logic_vector(7 downto 0); -- 8 Datenbits rs : out std_logic; -- Register Select
in „USBprog CPLD Starterkit Wie bauen?“ · FPGA, VHDL & Co. ·
-
Datei
dcf_az.ino
// 0.0 Original az_delivery // 0.1 LCD // 0.2 RTC // 0.3 RTC update @ 1:00 #include <LiquidCrystal_I2C.h> // Library for LCD LiquidCrystal_I2C lcd = LiquidCrystal_I2C(0x3f, 20, 4); #define STATUS_PIN LED_BUILTIN #define DCF_PIN 2 #include
in „Arduino und Atmega8“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Speedometer.c
cross-compiler. *****************************************************/ #include <mega8515.h> // Alphanumeric LCD Module functions #include <alcd.h> // Standard library functions (itoa, ftoa etc.) #include <stdlib.h> // Delay functions #include <delay.h> // Nicknames for port pins #define PLUS_KEY PINC.0 #define
in „Tacho und Kilometer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
lcd.h
#ifndef LCD_H #define LCD_H #if (__GNUC__ * 100 + __GNUC_MINOR__) < 303 #error "This library requires AVR-GCC 3.3 or later, update to newer AVR-GCC compiler !" #endif #include <inttypes.h> #include <avr/pgmspace.h
in „Display geht immernoch nicht.“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD.c
//****************************************************************************** // // LCD-Library // // Stellt LCD-Routinen für den MSP430F2013 bereit. die Pins werden in der // LCD.h Datei definiert. // // Last update: 20.03.2010 by Mojo // // Original writen by Mathar.com changed by Mojo
in „LCD versagt beim anschließen der BackLight“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Speedo_C.c
cross-compiler. *****************************************************/ #include <mega8515.h> // Alphanumeric LCD Module functions #include <alcd.h> // Standard library functions (itoa, ftoa etc.) #include <stdlib.h> // Delay functions #include <delay.h> // Nicknames for port pins #define PLUS_KEY PINC.0 #define
in „Tacho und Kilometer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
glcd.inc
Remarks: this Copyright must be included known Problems: none Version: 2.1. 2004 Description: Graphic Library for Nokia 6100 Display and compatible */ #include <avr/io.h> #if defined (__AVR_ATmega8__) #define LCD_PORT _SFR_IO_ADDR(PORTB) #define LCD_PIN _SFR_IO_ADDR(PINB) #define LCD_DDR _SFR_IO_ADDR(DDRB
in „Nokia 6100 Grafiklibrary die Zweite“ · Projekte & Code ·
-
Datei
test.c
cross-compiler. *****************************************************/ #include <mega8515.h> // Alphanumeric LCD Module functions #include <alcd.h> // Standard library functions (itoa, ftoa etc.) #include <stdlib.h> #include <stdio.h> // Delay functions #include <delay.h> // Nicknames for port pins #define PLUS_KEY
in „Tacho und Kilometer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.c
#include <avr/io.h> #include <util/delay.h> #include <i2cmaster.h> #include <stdlib.h> #define LCD 0xFE // Adresse I2C-LCD Adapter void i2c_writes(char *data) { i2c_start_wait(LCD+I2C_WRITE); // I2C Adresse und "Schreib Modus" setzen i2c_write(0x76); // Schreib Adresse 0x76 (String) while(*data)
in „String an LCD ausgeben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Roboter_mit_Kompass.ino
serielle Konsole while(!Serial); // Seriell bereit? Fuer Leonardo und Co Wire.begin(); // starte I2C-Bus lcd.begin(16,2); // Start lcd object lcd.clear(); pinMode(10,OUTPUT); pinMode(M1, OUTPUT); // Motor 1 pinMode(M2, OUTPUT); // Motor 2 digitalWrite(10, 1); compass.init(); compass.enableDefault(); /* Calibration
in „Kompass-Motorsteuerung mit einem Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Roboter.c
serielle Konsole while(!Serial); // Seriell bereit? Fuer Leonardo und Co Wire.begin(); // starte I2C-Bus lcd.begin(16,2); // Start lcd object lcd.clear(); pinMode(10,OUTPUT); pinMode(M1, OUTPUT); // Motor 1 pinMode(M2, OUTPUT); // Motor 2 digitalWrite(10, 1); compass.init(); compass.enableDefault(); /* Calibration
in „Kompass-Motorsteuerung mit einem Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
sdcard.h" #include "uart.h" #include "fat32.h" #include "stdutils.h" #include "delay.h" //User defined library which contains the delay routines #include "spi.h" #include "lcd.h" //User defined LCD library which contains the lcd routines #include "rtc.h" #include "gpio.h" #define LED1 P1_29 #define SWITCH1
in „Count external pulses using LPC1768“ · µC & Digital Electronics ·
-
Datei
Configuration.h
// // Sainsmart (YwRobot) LCD Displays // // These require F.Malpartida's LiquidCrystal_I2C library // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home // //#define LCD_SAINSMART_I2C_1602 //#define LCD_SAINSMART_I2C_2004 // // Generic LCM1602 LCD adapter // //#define LCM1602 // // PANELOLU2 LCD with status LEDs, // separate encoder and click inputs. // // Note: This controller requires Arduino's LiquidTWI2 library v1.2.3 or later. // For more
in „Marlin Firmware mit dem ATMEL STUDIO 7 auf das Arduino Mega 2560 Board flashen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Configuration.h
// // Sainsmart (YwRobot) LCD Displays // // These require F.Malpartida's LiquidCrystal_I2C library // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home // //#define LCD_SAINSMART_I2C_1602 //#define LCD_SAINSMART_I2C_2004 // // Generic LCM1602 LCD adapter // //#define LCM1602 // // PANELOLU2 LCD with status LEDs, // separate encoder and click inputs. // // Note: This controller requires Arduino's LiquidTWI2 library v1.2.3 or later. // For more
in „Marlin Firmware mit dem ATMEL STUDIO 7 auf das Arduino Mega 2560 Board flashen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Configuration.h
// // Sainsmart (YwRobot) LCD Displays // // These require F.Malpartida's LiquidCrystal_I2C library // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home // //#define LCD_SAINSMART_I2C_1602 //#define LCD_SAINSMART_I2C_2004 // // Generic LCM1602 LCD adapter // //#define LCM1602 // // PANELOLU2 LCD with status LEDs, // separate encoder and click inputs. // // Note: This controller requires Arduino's LiquidTWI2 library v1.2.3 or later. // For more
in „Marlin Firmware mit dem ATMEL STUDIO 7 auf das Arduino Mega 2560 Board flashen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LCD_daten_tb.vhd
library ieee; use ieee.std_logic_1164.all; entity lcd_daten_tb is end entity lcd_daten_tb; architecture testbench of lcd_daten_tb is constant clk_period : time := (1 sec)/(50_000_000) ; component lcd_daten
-
Datei
Lang_DE.txt
frmMain.qPGPosLHersteller=LHersteller frmMain.qPPosLHersteller=LHersteller frmAuswahl.qryDLibrary=Library frmBauteil.qryBarcLibrary=Library frmBauteil.qryLibrary=Library frmKonfig.lbDirLib=Library frmMain.qBauteilLibrary=Library frmMain.qBLagerLibrary=Library frmMain.qGehauseExpLibrary=Library frmMain.qGehauseLibrary=Library frmMain.lbBauteilLibrary=&Library frmMain.lbCaseLibrary=&Library frmMain.lbBLagerLib=Librar&y frmAuswahl.qryBLID=LID frmBestellMin.qryLID=LID frmKisteTausch.qBauteilLID=LID frmMain.qAdrBLID=LID frmMain.qGehauseBLID
in „EleLa - Elektronik Lagerverwaltung V3.1“ · Projekte & Code ·
-
Datei
Configuration.h
Usually sold with a white PCB. // #define REPRAP_DISCOUNT_SMART_CONTROLLER // // GT2560 (YHCB2004) LCD Display // // Requires Testato, Koepel softwarewire library and // Andriy Golovnya's LiquidCrystal_AIP31068 library. // //#define YHCB2004 // // Original RADDS LCD Display+Encoder+SDCardReader // http
in „Custom 3D-Drucker zu ausgebuchtete Ecken“ · Mechanik, Gehäuse, Werkzeug ·
-
Datei
CHAR_LCD_CTR.vhd
------------------------------------------------ library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity CHAR_LCD_CTR is Port ( clk_50M : in STD_LOGIC; --- LCD Interface --- -- 8 Bit data port -- LCDData : out STD_LOGIC_VECTOR (7 downto 0); -- LCD Enable Line -- LCD_Enable : out STD_LOGIC; -- LCD R/W Select line !will be forced low continuously! LCD_RW : out STD_LOGIC; -- Register Select Line LCD_RegisterSelect : out STD_LOGIC; --- Communication
-
Datei
CHAR_LCD_CTR.vhd
------------------------------------------------ library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity CHAR_LCD_CTR is Port ( clk_50M : in STD_LOGIC; --- LCD Interface --- -- 8 Bit data port -- LCDData : out STD_LOGIC_VECTOR (7 downto 0); -- LCD Enable Line -- LCD_Enable : out STD_LOGIC; -- LCD R/W Select line !will be forced low continuously! LCD_RW : out STD_LOGIC; -- Register Select Line LCD_RegisterSelect : out STD_LOGIC; --- Communication
in „[VHDL] 16x2 LCD Textcontroller / HD44780“ · Projekte & Code ·
-
Datei
TFT_Clock.ino
libraries used: https://github.com/adafruit/Adafruit_ILI9340 https://github.com/adafruit/Adafruit-GFX-Library An example analogue clock using a TFT LCD screen to show the time use of some of the drawing commands with the modified Adafruit_TFT_AS library. For a more accurate clock, it would be better to use the RTClib library. But this is just a demo. This sketch uses font 4 only. Make sure all the required fonts are loaded by editting the User_Setup.h file in the TFT_ILI9341 library folder. If using an UNO or Mega (ATmega328
in „2.2'TFT ILI9340 und Arduino“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
glcd.inc
Remarks: this Copyright must be included known Problems: none Version: 2.1. 2004 Description: Graphic Library for Nokia 6100 Display and compatible */ #include <avr/io.h> #if defined (__AVR_ATmega8__) #define LCD_PORT _SFR_IO_ADDR(PORTB) #define LCD_PIN _SFR_IO_ADDR(PINB) #define LCD_DDR _SFR_IO_ADDR(DDRB
in „Nokia 6100 Grafiklibrary die Zweite“ · Projekte & Code ·
-
Datei
glcd.inc
Remarks: this Copyright must be included known Problems: none Version: 2.1. 2004 Description: Graphic Library for Nokia 6100 Display and compatible */ #include <avr/io.h> #if defined (__AVR_ATmega8__) #define LCD_PORT _SFR_IO_ADDR(PORTB) #define LCD_PIN _SFR_IO_ADDR(PINB) #define LCD_DDR _SFR_IO_ADDR(DDRB
in „Nokia 6100 Grafiklibrary die Zweite“ · Projekte & Code ·
-
Datei
speed.c
cross-compiler. *****************************************************/ #include <mega8515.h> // Alphanumeric LCD Module functions #include <alcd.h> // Standard library functions (itoa, ftoa etc.) #include <stdlib.h> // Delay functions #include <delay.h> // Nicknames for port pins #define PLUS_KEY PINC.0 #define
in „Tacho und Kilometer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LiquidCrystal_I2C.cpp
Starling Fix the reset bug (Thanks Tim) //wiki doc http://www.dfrobot.com/wiki/index.php?title=I2C/TWI_LCD1602_Module_(SKU:_DFR0063) //Support Forum: http://www.dfrobot.com/forum/ //Compatible with the Arduino IDE 1.0 //Library version:1.1 #include "LiquidCrystal_I2C.h" #include <inttypes.h> #if defined(
in „Experimente mit Arduino und Ultraschall“ · Projekte & Code ·
-
Datei
1335.c
/*********************************************************************** Content: Graphic library for Epson SED-1335 based LCD displays. Last modified: 15.05.2003 Copyrights: Free to use, free to change, free to delete :-) Compiler: ImageCraft AVR Written by: Knut Baardsen @ Baardsen Software,
in „Einzelne Pixel mit S1D13305 (SED1335) setzen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
LVGLDispDriver_DISCO_F769NI.cpp
using BSP draw functions (not lvgl) _lcd.Clear(LCD_COLOR_BLUE); _lcd.SetBackColor(LCD_COLOR_BLUE); _lcd.SetTextColor(LCD_COLOR_WHITE); _lcd.DisplayStringAt(0, LINE(5), (uint8_t *)"DISCOVERY STM32F769NI", CENTER_MODE); init(); } void LVGLDispDISCO_F769NI
in „komplexes Problem mit Grafik und Dateisystem auf Disco-F746NG“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.c
avr/io.h> #include <util/delay.h> #include <i2cmaster.h> #include <stdlib.h> //Definitionen #define LCD 0xFE // Adresse I2C-LCD Adapter //Initialisierung Uart void uart_init(void) { UBRRH = ((8000000/(19200*16L)-1) >> 8); // Baudrate Berechnen, High Byte setzen UBRRL = (uint8_t)(8000000/(19200*16L)-1)
in „String an LCD ausgeben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
code.c
#include <avr/io.h> #include <util/delay.h> #include <i2cmaster.h> #include <stdlib.h> #define LCD 0xFE // Adresse I2C-LCD Adapter void uart_init(void) { UBRRH = ((8000000/(19200*16L)-1) >> 8); // Baudrate Berechnen, High Byte setzen UBRRL = (uint8_t)(8000000/(19200*16L)-1); // Low Byte setzen UCSRB
in „String an LCD ausgeben“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
spedo.c
cross-compiler. *****************************************************/ #include <mega8515.h> // Alphanumeric LCD Module functions #include <alcd.h> // Standard library functions (itoa, ftoa etc.) #include <stdlib.h> // Delay functions #include <delay.h> // Nicknames for port pins #define PLUS_KEY PINC.0 #define
in „Tacho und Kilometer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
DruckSEnsor.c
an ADC4) // // Fuses im uC: CKDIV8: Aus (keine generelle Vorteilung des Takts) // // Header-Files: lcd_lib_de.h (Library zur Ansteuerung LCD-Display Ver.1.2) // // Module 1) Taktgenerator // 2) AD-Wandlung (Takt: 100 ms) // 3) Umrechnung für Druck (Takt: 100 ms) // 4) Anzeigetreiber (Takt: 1 s) // //
in „10bit AD-Wandler auf 12bit“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
Configuration.h
// // Sainsmart (YwRobot) LCD Displays // // These require F.Malpartida's LiquidCrystal_I2C library // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home // //#define LCD_SAINSMART_I2C_1602 //#define LCD_SAINSMART_I2C_2004 // // Generic LCM1602 LCD adapter // //#define LCM1602 // // PANELOLU2 LCD with status LEDs, // separate encoder and click inputs. // // Note: This controller requires Arduino's LiquidTWI2 library v1.2.3 or later. // For more
in „Marlin 2.0.72 lässt sich nicht compilieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
G065VN01_tb.vhd
: integer := 25_200_000; signal clock : std_logic := '0'; signal lcd_pixel : std_logic; signal lcd_de : std_logic; begin clock <= not clock after (500 ms / CLOCK_FREQUENCY_HZ); P_DEMO : process constant H_PERIOD : integer := 800; -- total pixels per line constant H_ACTIVE