#include "LiquidCrystal_I2C.h"
#include <SoftWire.h>
SoftWire Swire(PB6,PB7,SOFT_STANDARD);
LiquidCrystal_PCF8574 lcd(0x27, 16, 2);
void setup() {
Wire.begin();
Wire.beginTransmission(0x27);
}
void loop() {
lcd.setBacklight(255);
lcd.home();
lcd.clear();
lcd.print("Hello World!");
lcd.noBlink();
lcd.noCursor();
delay(1000);
}
Loading
stm32-bluepill
stm32-bluepill