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

Aktivieren der Spannungsversorgung am GPIO #2

Open
PaulReichmuth opened this issue Jul 4, 2022 · 0 comments
Open

Aktivieren der Spannungsversorgung am GPIO #2

PaulReichmuth opened this issue Jul 4, 2022 · 0 comments

Comments

@PaulReichmuth
Copy link

Um 3,3V auf den GPIO-Pins anzulegen, muss per Software erst der IO-ENABLE Pin (Pin 8 in Arduino) auf LOW gesetzt werden.

#define IO_ENABLE 8

void setup() {
  // put your setup code here, to run once:

  
  pinMode(IO_ENABLE, OUTPUT);
  digitalWrite(IO_ENABLE,LOW);
}
@mariopesch mariopesch transferred this issue from another repository Aug 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant