Fast-Fun: Week 3 Cardboard Keyboard
This week I wanted to make a keyboard using the old cardboard box I had used for the clicker.
I wanted to use one sleeve to dictate the letter ‘i’ and the other sleeve to dictate the letter ‘s’.
This was so I could achieve the words ‘is’ and ‘si’.
if (digitalRead(letteri) == HIGH) {
Keyboard.write('i');
}
if (digitalRead(letters) == HIGH) {
Keyboard.write('s');
These are some screenshots of the result of clicking the sleeve. It caused a little chaos on the computer screen in regards to the arduino sketch and my google search, but nevertheless, it was fun!!!!