Alguien podría ayudarme por favor,estoy programando un stm-32 con una pantalla i2c

#include<Wire.h>
#include<LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27,16,2);


void setup() {
  lcd.init();
  lcd.backlight();


}

void loop() {
  // put your main code here, to run repeatedly:
  lcd.setCursor(2,0);
  lcd.print("void loop ()");
  lcd.setCursor(3,1);
  lcd.print("XS" );
}

///este es el error:invalid conversion from 'int' to 't_backlighPol' [-fpermissive]

Te funciona esto?

Moderador
Los errores se postean del mismo modo que el código de manera que te invito a que edites tu posteo inicial.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.