Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/LiquidCrystal.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
#define LCD_5x10DOTS 0x04
#define LCD_5x8DOTS 0x00

#ifdef ARDUINO_ARCH_MEGAAVR
using namespace arduino; //!< MEGA AVR architecture uses the arduino namespace
#endif //!< but AVR arch does not

class LiquidCrystal : public Print {
public:
LiquidCrystal(uint8_t rs, uint8_t enable,
Expand Down