Release 2.4.3
This commit is contained in:
parent
f50383922e
commit
3a71aaeb72
3 changed files with 8 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
|||
Arduino HID Project 2.4.2
|
||||
Arduino HID Project 2.4.3
|
||||
=========================
|
||||
|
||||

|
||||
|
|
@ -7,7 +7,7 @@ This project went through a lot of phases and has now reached a new Arduino ~~US
|
|||
with a lot of new functions like extended HID. It also supports HoodLoader1+2.
|
||||
The idea is to enable enhanced USB functions to almost all 'standard' Arduino boards.
|
||||
|
||||
**Supported Arduinos (IDE 1.6.8 or higher!):**
|
||||
**Supported Arduinos (IDE 1.6.7 or higher!):**
|
||||
* Uno (with [HoodLoader2](https://github.com/NicoHood/HoodLoader2))
|
||||
* Mega (with [HoodLoader2](https://github.com/NicoHood/HoodLoader2))
|
||||
* Leonardo
|
||||
|
|
@ -49,6 +49,9 @@ www.nicohood.de
|
|||
Version History
|
||||
===============
|
||||
```
|
||||
2.4.3 Release (02.03.2016)
|
||||
* Fixed NKRO Keyboard modifier add() #76
|
||||
|
||||
2.4.2 Release (04.01.2016)
|
||||
* RawHID >64 byte fix (Arduino IDE 1.6.8 fix)
|
||||
* Fixed Keyboard modifier add() issue #68
|
||||
|
|
@ -227,7 +230,7 @@ Licence and Copyright
|
|||
If you use this library for any cool project let me know!
|
||||
|
||||
```
|
||||
Copyright (c) 2014-2015 NicoHood
|
||||
Copyright (c) 2014-2016 NicoHood
|
||||
See the readme for credit to other people.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name=HID-Project
|
||||
version=2.4.2
|
||||
version=2.4.3
|
||||
author=NicoHood
|
||||
maintainer=NicoHood <blog@NicoHood.de>
|
||||
sentence=Extended HID Functions for Arduino
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ THE SOFTWARE.
|
|||
#pragma once
|
||||
|
||||
// Software version
|
||||
#define HID_PROJECT_VERSION 242
|
||||
#define HID_PROJECT_VERSION 243
|
||||
|
||||
#if ARDUINO < 10607
|
||||
#error HID Project requires Arduino IDE 1.6.7 or greater. Please update your IDE.
|
||||
|
|
@ -54,4 +54,3 @@ THE SOFTWARE.
|
|||
|
||||
// Include Teensy HID afterwards to overwrite key definitions if used
|
||||
// TODO include Teensy API if non english keyboard layout was used
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue