-
Notifications
You must be signed in to change notification settings - Fork 93
Issues: m5stack/M5StickC-Plus
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
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
#include <M5StickC.h> // ספרייה למכשיר M5StickC int ledPin = 10; // הפין שאליו מחובר ה-LED int buttonPin = 0; // הפין שאליו מחובר כפתור void setup() { M5.begin(); // אתחול ה-M5StickC pinMode(ledPin, OUTPUT); // קביעת הפין כיציאה pinMode(buttonPin, INPUT_PULLUP); // קביעת הפין כקלט עם התנגדות פנימית } void loop() { M5.update(); // עדכון מצב הכפתורים if (digitalRead(buttonPin) == LOW) { // אם הכפתור נלחץ digitalWrite(ledPin, HIGH); // הדלק את ה-LED } else { digitalWrite(ledPin, LOW); // כבה את ה-LED } }
#62
opened Jan 2, 2025 by
ariel334375
Black display when using setcursor() even when changing fontsizes from 1 to 7
#57
opened Jan 27, 2024 by
linxcow
2 tasks done
C_BACK_DRIVER.ino is wildly incomplete for a commercial example
#50
opened Sep 4, 2023 by
kyle-wendling
2 tasks done
ProTip!
Exclude everything labeled
bug
with -label:bug.