Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Startup delay wrong for 8bit AVR core ... #42

Open
PICboy opened this issue Dec 25, 2020 · 0 comments
Open

Startup delay wrong for 8bit AVR core ... #42

PICboy opened this issue Dec 25, 2020 · 0 comments
Labels
topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project

Comments

@PICboy
Copy link

PICboy commented Dec 25, 2020

In LiquidCrystal.cpp at line 107, there is delayMicroseconds(50000); startup delay of 50ms.
Because maximum value that function delayMicroseconds() can handle is 16383, instead of 50mS you got only around 2mS delay.
Make this delay in form of:
for(unsigned char i=0;i<5;i++)
delayMicroseconds(10000);
Best regards from Republic of Serbia.

@per1234 per1234 added type: imperfection Perceived defect in any part of project topic: code Related to content of the project itself labels Apr 18, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

2 participants