A Pen by Tom Hermans on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* based on @file MultiKey.ino || @version 1.0 || @author Mark Stanley|| @contact [email protected] | |
|| @description This sketch is an example of how you can get multiple key presses from a keypad or keyboard. | |
|| # | |
*/ | |
#include <Keypad.h> | |
#include <BleKeyboard.h> | |
// 135x240px display | |
#include <SPI.h> | |
#include <TFT_eSPI.h> // Hardware-specific | |
TFT_eSPI tft = TFT_eSPI(135, 240); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "90", | |
"updatedAt": "Fri Apr 08 2022 18:27:06 GMT+0200 (Central European Summer Time)", | |
"values": { | |
"global": { | |
"brand": { | |
"neutral": { | |
"value": "#c4c4c4", | |
"type": "color" | |
}, |
A Pen by Tom Hermans on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": [], | |
"styles": [ | |
"https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.16/tailwind.css" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"scripts": [], | |
"styles": [ | |
"https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.16/tailwind.css" | |
] | |
} |
A Pen by Tom Hermans on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cache | |
package.json | |
package-lock.json | |
public |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"endOfLine": "lf", | |
"semi": false, | |
"singleQuote": false, | |
"tabWidth": 2, | |
"trailingComma": "es5", | |
"useTabs": true, | |
"printWidth": 100, | |
"bracketSpacing": true | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.titleBarStyle": "native", | |
"window.menuBarVisibility": "toggle", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.renderIndentGuides": true, | |
"workbench.colorCustomizations": { | |
"editorIndentGuide.activeBackground": "#ffffff22", | |
"editorIndentGuide.background": "#ffffff22" | |
}, | |
"breadcrumbs.enabled": true, |