Skip to content

Commit

Permalink
Update J_scrolling_menu.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
VasilKalchev authored Nov 5, 2018
1 parent 750a45f commit e9278c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/J_scrolling_menu/J_scrolling_menu.ino
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ LiquidCrystal lcd(LCD_RS, LCD_E, LCD_D4, LCD_D5, LCD_D6, LCD_D7);
const bool pullup = true;
Button enter(10, pullup);

LiquidLine line1(0, 0, 3.14159265f);
const float pi = 3.14159265f;

LiquidLine line1(0, 0, pi);
LiquidLine line2(0, 1, "Line 2");
LiquidLine line3(0, 1, "Line 3");
LiquidLine line4(0, 1, "Line 4");
Expand Down

0 comments on commit e9278c4

Please sign in to comment.