()Keyboard.begin
מתחילה את הדמיה של מקלדת במחשב המחובר לכרטיס ה-Arduino. כדי לסיים את השליטה תוכלו לקרוא לפונקציה ()Keyboard.end.תחביר
- קוד: בחר הכל
Keyboard.begin()
פרמטרים:
אין.
פונקציה זו לא מחזירה ערכים.
דוגמה
- קוד: בחר הכל
void setup() {
// make pin 2 an input and turn on the
// pullup resistor so it goes high unless
// connected to ground:
pinMode(2, INPUT_PULLUP);
Keyboard.begin();
}
void loop() {
//if the button is pressed
if(digitalRead(2)==LOW){
//Send the message
Keyboard.print("Hello!");
}
}
ראו גם:
()Keyboard.end()Keyboard.press
()Keyboard.print
()Keyboard.println
()Keyboard.release
()Keyboard.releaseAll
()Keyboard.write
מחלקות Mouse ו-Keyboard
פירוט שפת תכנות לסביבת Arduino
עמוד זה הוא תרגום של ()Keyboard.begin לפי רישיון Creative Commons Attribution-ShareAlike 3.0.