sdgasgfasgsfga// STM32 Nucleo-C031C6 I2C Example
// Simulation: https://wokwi.com/projects/365421666018061313

#include "LiquidCrystal_I2C.h"
https://www.honor.com/it/club/topicdetail/topicid-3608390874202113/
https://www.honor.com/it/club/topicdetail/topicid-3608391524286464/
https://www.honor.com/it/club/topicdetail/topicid-3608392763736064/
https://www.honor.com/it/club/topicdetail/topicid-3608393034235905/
https://www.honor.com/it/club/topicdetail/topicid-3608393472540672/
https://www.honor.com/it/club/topicdetail/topicid-3608393986342913/
https://www.koreanfedusa.com/forum/__q-a/livestreams-netherland-vs-england-live-stream-euro-semi-final-head-to-head
https://www.loopparking.ca/forum/ottawa-parking/watchlive-uefa-euro-2024-netherlands-vs-england-live-free-semifinal
https://www.eightballrecords.com/forum/questions-answers/here-s-ways-to-watch-netherland-vs-england-live-streams-free-broadcast-tv-on-10-july-2024
https://www.lacanepiere.net/forum/questions-et-reponses/officials-netherland-vs-england-live-streams-on-tv-channel-11-july
https://new.c.mi.com/pk/post/53758/+OFFICIALs_Netherland_vs_England_LIVE_STreams_ON_T
https://www.linkedin.com/pulse/heres-netherland-vs-england-live-streams-free-tv-10-july-jonathan-vkusc/
https://www.honor.com/it/club/topicdetail/topicid-3608390874202113/?jdbfjd
https://www.honor.com/it/club/topicdetail/topicid-3608391524286464/?vmkdhg
https://www.honor.com/it/club/topicdetail/topicid-3608392763736064/?mkdhf
https://www.honor.com/it/club/topicdetail/topicid-3608393034235905/?kdhdf
https://www.honor.com/it/club/topicdetail/topicid-3608393472540672/?dhgg
https://www.honor.com/it/club/topicdetail/topicid-3608393986342913/?dkhg
https://www.koreanfedusa.com/forum/__q-a/livestreams-netherland-vs-england-live-stream-euro-semi-final-head-to-head?dfhdg
https://www.loopparking.ca/forum/ottawa-parking/watchlive-uefa-euro-2024-netherlands-vs-england-live-free-semifinal?iury
https://www.eightballrecords.com/forum/questions-answers/here-s-ways-to-watch-netherland-vs-england-live-streams-free-broadcast-tv-on-10-july-2024?hvfg
https://www.lacanepiere.net/forum/questions-et-reponses/officials-netherland-vs-england-live-streams-on-tv-channel-11-july?kxfhdg
https://new.c.mi.com/pk/post/53758/+OFFICIALs_Netherland_vs_England_LIVE_STreams_ON_T?kcghf
https://www.linkedin.com/pulse/heres-netherland-vs-england-live-streams-free-tv-10-july-jonathan-vkusc/?vkhdfg
#define I2C_ADDR    0x27
#define LCD_COLUMNS 20
#define LCD_LINES   4

LiquidCrystal_I2C lcd(I2C_ADDR, LCD_COLUMNS, LCD_LINES);

void setup() {
  Serial.begin(115200);
  Serial.println("Hello, STM32!");

  lcd.init();
  lcd.backlight();

  lcd.setCursor(4, 0);
  lcd.print("Hello, STM32");
  lcd.setCursor(5, 2);
  lcd.print("Welcome to");
  lcd.setCursor(7, 3);
  lcd.print("Wokwi!");
}

void loop() {
}