К сожалению у меня не получилось запустить экран на этих пинах:
#include <SoftWire.h>
#include <Wire.h>
#include <LiquidCrystal_I2C_STM32.h>
SoftWire SWire(PB8, PB9, SOFT_FAST);
LiquidCrystal_I2C_STM32 lcd(0x27, 16, 2);
void setup(){
SWire.begin();
lcd.begin();
lcd.backlight();// Включаем подсветку дисплея
lcd.print(" rcl-radio.ru ");
lcd.setCursor(0, 1);
lcd.print(" LCD 1602 ");
delay(5000);
lcd.noBacklight();// Выключаем подсветку дисплея
delay(5000);
lcd.backlight();// Включаем подсветку дисплея
}
void loop(){}
Сканер адреса правильно определяет адрес на этих пинах
// --------------------------------------
// i2c_scanner
//
//
#include <SoftWire.h>
SoftWire SWire(PB8, PB9, SOFT_FAST);
void setup() {
Serial.begin(9600);
SWire.begin();
Serial.println("\nSoftware I2C.. Scanner");
}
void loop() {
byte error, address;
int nDevices;
Serial.println("Scanning...");
nDevices = 0;
for(address = 1; address < 127; address++) {
// The i2c_scanner uses the return value of
// the Write.endTransmisstion to see if
// a device did acknowledge to the address.
SWire.beginTransmission(address);
error = SWire.endTransmission();
if (error == 0) {
Serial.print("I2C device found at address 0x");
if (address < 16)
Serial.print("0");
Serial.println(address, HEX);
nDevices++;
}
else if (error == 4) {
Serial.print("Unknown error at address 0x");
if (address < 16)
Serial.print("0");
Serial.println(address, HEX);
}
}
if (nDevices == 0)
Serial.println("No I2C devices found");
else
Serial.println("done");
delay(5000); // wait 5 seconds for next scan
}
Но дальше продвинутся не удалось