Skip to content

Commit d97c1f9

Browse files
committed
v1
1 parent 80ab817 commit d97c1f9

File tree

6 files changed

+514
-0
lines changed

6 files changed

+514
-0
lines changed

README.adoc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
= Keyboard Library with spanish layout for Arduino =
2+
3+
This library allows an Arduino board with USB capabilites to act as a Keyboard with spanish layout.
4+
Being based on HID library you need to include "HID.h" in your sketch.
5+
6+
== License ==
7+
8+
Copyright (c) Napuh. All right reserved.
9+
10+
This library is free software; you can redistribute it and/or
11+
modify it under the terms of the GNU Lesser General Public
12+
License as published by the Free Software Foundation; either
13+
version 2.1 of the License, or (at your option) any later version.
14+
15+
This library is distributed in the hope that it will be useful,
16+
but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18+
Lesser General Public License for more details.
19+
20+
You should have received a copy of the GNU Lesser General Public
21+
License along with this library; if not, write to the Free Software
22+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# arduinoKeyboardES
22
Modified arduino keyboard library to be compatible with ISO spanish keyboard layout.
3+
4+
To install in your arduino IDE, download the latest .zip release and import it in your arduino IDE (Sketch > Include Library > Add .zip library).

keywords.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#######################################
2+
# Syntax Coloring Map For Keyboard
3+
#######################################
4+
5+
#######################################
6+
# Datatypes (KEYWORD1)
7+
#######################################
8+
9+
Keyboard KEYWORD1
10+
11+
#######################################
12+
# Methods and Functions (KEYWORD2)
13+
#######################################
14+
15+
begin KEYWORD2
16+
write KEYWORD2
17+
press KEYWORD2
18+
release KEYWORD2
19+
releaseAll KEYWORD2
20+
21+
#######################################
22+
# Constants (LITERAL1)
23+
#######################################
24+

library.properties

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=Keyboard_ES
2+
version=1.0.0
3+
author=Napuh
4+
maintainer=Napuh <nhuerp00@estudiantes.unileon.es>
5+
sentence=Allows an Arduino/Genuino board with USB capabilites to act as a Keyboard with spanish layout.
6+
paragraph=This library plugs on the HID library. It can be used with or without other HID-based libraries (Mouse, Gamepad etc)
7+
category=Device Control
8+
url=https://github.com/Napuh/arduinoKeyboardES
9+
architectures=*

0 commit comments

Comments
 (0)