Skip to content

Commit

Permalink
v1
Browse files Browse the repository at this point in the history
  • Loading branch information
Napuh committed Aug 14, 2022
1 parent 80ab817 commit d97c1f9
Show file tree
Hide file tree
Showing 6 changed files with 514 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
= Keyboard Library with spanish layout for Arduino =

This library allows an Arduino board with USB capabilites to act as a Keyboard with spanish layout.
Being based on HID library you need to include "HID.h" in your sketch.

== License ==

Copyright (c) Napuh. All right reserved.

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# arduinoKeyboardES
Modified arduino keyboard library to be compatible with ISO spanish keyboard layout.

To install in your arduino IDE, download the latest .zip release and import it in your arduino IDE (Sketch > Include Library > Add .zip library).
24 changes: 24 additions & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#######################################
# Syntax Coloring Map For Keyboard
#######################################

#######################################
# Datatypes (KEYWORD1)
#######################################

Keyboard KEYWORD1

#######################################
# Methods and Functions (KEYWORD2)
#######################################

begin KEYWORD2
write KEYWORD2
press KEYWORD2
release KEYWORD2
releaseAll KEYWORD2

#######################################
# Constants (LITERAL1)
#######################################

9 changes: 9 additions & 0 deletions library.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name=Keyboard_ES
version=1.0.0
author=Napuh
maintainer=Napuh <[email protected]>
sentence=Allows an Arduino/Genuino board with USB capabilites to act as a Keyboard with spanish layout.
paragraph=This library plugs on the HID library. It can be used with or without other HID-based libraries (Mouse, Gamepad etc)
category=Device Control
url=https://github.com/Napuh/arduinoKeyboardES
architectures=*
Loading

0 comments on commit d97c1f9

Please sign in to comment.