Search found 1 match

[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
by ericsacchetto
Wed Apr 21, 2021 8:27 am
Forum: NANO-ARM - Arduino Zero Compatible board
Topic: Does the Nano-ARM work as a keyboard?
Replies: 2
Views: 7075

Re: Does the Nano-ARM work as a keyboard?

I was trying to accomplish the same goal. A keypad connected to the NanoARM to send shortcuts to the PC. Here is the code: #include <Keypad.h> #include "HID-Project.h" const byte ROWS = 4; const byte COLS = 4; char hexaKeys[ROWS][COLS] = { {'1', '2', '3', 'A'}, {'4', '5', '6', 'B'}, {'7', '8', '9', ...