We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Testing Method: Uploaded Following script
void setup() { pinMode(8, OUTPUT); pinMode(22, OUTPUT); pinMode(A1, OUTPUT); } void loop() { digitalWrite(A1, HIGH); digitalWrite(22, HIGH); digitalWrite(8, HIGH); delay(5000); digitalWrite(22, LOW); digitalWrite(A1, LOW); digitalWrite(8, LOW); delay(5000); }
Observed D22 HIGH at 4.84V D8 HIGH at 4.83V A1 HIGH at 5.11V
Suspect impedance of BJT, n-fet pulldown and atmega pin impedance to contribute to voltage drop. Able to ignore for the moment 2021-03-03
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Testing Method: Uploaded Following script
Observed D22 HIGH at 4.84V
D8 HIGH at 4.83V
A1 HIGH at 5.11V
Suspect impedance of BJT, n-fet pulldown and atmega pin impedance to contribute to voltage drop.
Able to ignore for the moment 2021-03-03
The text was updated successfully, but these errors were encountered: