Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. error C2011: 'Print' : 'class' type redefinition
  2. class Print{
  3. private: int write_error;
  4. error C2039: 'print' : is not a member of 'LiquidCrystal'
  5. lcd.print("Hello!");
  6. error C2504: 'Print' : base class undefined
  7. class LiquidCrystal : public Print { public:
  8. error C2873: 'write' : symbol cannot be used in a using-declaration,
  9. using Print::write;
  10. error C2027: use of undefined type 'Print'
  11. using Print::write;
  12. error C2873: 'write' : symbol cannot be used in a using-declaration
  13. using Print::write;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement