No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lcd.cpp 435B

1234567891011121314151617
  1. #include <Arduino.h>
  2. #include "config.h"
  3. #include "config_pins.h"
  4. #include "lcd.h"
  5. LiquidCrystal lcd(LCD_PINS_RS, LCD_PINS_ENABLE, LCD_PINS_D4, LCD_PINS_D5, LCD_PINS_D6, LCD_PINS_D7);
  6. void lcd_init(void) {
  7. lcd.begin(20, 4);
  8. lcd.print(F(" Fuellfix v2 "));
  9. lcd.print(F(" Initializing "));
  10. lcd.print(F("Software Version "));
  11. lcd.print(F(FIRMWARE_VERSION));
  12. lcd.print(F("made by: xythobuz.de"));
  13. }