Skip to content

Commit

Permalink
Fix bad namespace usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthbdn committed Jul 2, 2024
1 parent 4a01197 commit 87cd661
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions samples/Display/I2C_LCD/I2C_LCD_Sample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,25 @@ void i2cLCDSample_main(codal::STM32DISCO_L475VG_IOT& discoL475VgIot)
lcd.clear();
lcd.print("10 in BIN");
lcd.setCursor(0, 1);
lcd.print(10, codal::PrintRadix::BIN);
lcd.print(10, PrintRadix::BIN);
discoL475VgIot.sleep(1000);

lcd.clear();
lcd.print("10 in HEX");
lcd.setCursor(0, 1);
lcd.print(10, codal::PrintRadix::HEX);
lcd.print(10, PrintRadix::HEX);
discoL475VgIot.sleep(1000);

lcd.clear();
lcd.print("10 in OCT");
lcd.setCursor(0, 1);
lcd.print(10, codal::PrintRadix::OCT);
lcd.print(10, PrintRadix::OCT);
discoL475VgIot.sleep(1000);

lcd.clear();
lcd.print("10 in DEC");
lcd.setCursor(0, 1);
lcd.print(10, codal::PrintRadix::DEC);
lcd.print(10, PrintRadix::DEC);
discoL475VgIot.sleep(1000);

lcd.clear();
Expand Down

0 comments on commit 87cd661

Please sign in to comment.