Skip to content

Commit 2b9dddc

Browse files
committed
Updated boards supported list
1 parent eb354e0 commit 2b9dddc

File tree

1 file changed

+11
-15
lines changed

1 file changed

+11
-15
lines changed

README.md

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ Constructor used to initialize and setup the Joystick. The following optional pa
9292
- `bool includeBrake` - Default: `true` - Indicates if the Brake is available on the joystick.
9393
- `bool includeSteering` - Default: `true` - Indicates if the Steering is available on the joystick.
9494

95-
The following constants define the default values for the constructor parameter's listed above:
95+
The following constants define the default values for the constructor parameters listed above:
9696

9797
- `JOYSTICK_DEFAULT_REPORT_ID` is set to `0x03`
9898
- `JOYSTICK_DEFAULT_BUTTON_COUNT` is set to `32`
9999
- `JOYSTICK_DEFAULT_HATSWITCH_COUNT` is set to `2`
100100

101101
### Joystick.begin(bool initAutoSendState)
102-
Starts emulating a game controller connected to a computer. By default all methods update the game controller state immediately. If `initAutoSendState` is set to `false`, the `Joystick.sendState` method must be called to update the game controller state.
102+
Starts emulating a game controller connected to a computer. By default, all methods update the game controller state immediately. If `initAutoSendState` is set to `false`, the `Joystick.sendState` method must be called to update the game controller state.
103103

104104
### Joystick.end()
105105
Stops the game controller emulation to a connected computer.
@@ -201,18 +201,8 @@ I have tested with 0, 1, and 2 hat switches.
201201

202202
I have tested this library using the following Arduino IDE Versions:
203203

204-
- 1.6.6
205-
- 1.6.7
206-
- 1.6.8
207-
- 1.6.9
208-
- 1.6.10
209-
- 1.6.11
210-
- 1.6.12
211-
- 1.6.13
212-
- 1.8.0
213-
- 1.8.1
214-
- 1.8.2
215-
- 1.8.3
204+
- 1.6.6 through 1.6.13
205+
- 1.8.0 through 1.8.3
216206

217207
I have tested this library with the following boards:
218208

@@ -224,10 +214,16 @@ Others have tested this library with the following boards:
224214
- [SparkFun Pro Micro](https://www.sparkfun.com/products/12640)
225215
- [RobotDyn Micro ATmega32U4-MU](http://robotdyn.com/catalog/boards/micro_atmega32u4_mu/) by [@Sylverzerom](https://github.com/Sylverzerom)
226216

217+
Boards that should work, but I have not personally tested:
218+
219+
- [Arduino Leonardo ETH](https://store.arduino.cc/usa/arduino-leonardo-eth)
220+
- [Arduino Industrial 101](https://store.arduino.cc/usa/arduino-industrial-101)
221+
- [Arduino Yún](https://store.arduino.cc/usa/arduino-yun)
222+
227223
Other board notes:
228224
- [Arduino Due](https://www.arduino.cc/en/Main/ArduinoBoardDue) - NOT Supported - I have been told that the old Arduino IDE 1.6.5 (and below) version of this library (see [Add USB Game Controller to Arduino Leonardo or Micro](http://mheironimus.blogspot.com/2015/03/add-usb-game-controller-to-arduino.html))
229225
works with the Arduino Due. I have also been told Version 1.x of the the Arduino Joystick Library will work with the Arduino Duo. However, Version 2.x of the Arduino Joystick Library does not work with Arduino Due at this time.
230226
- [Arduino UNO](https://www.arduino.cc/en/Main/ArduinoBoardUno) - NOT Supported - However, it might work with the [NicoHood/HoodLoader2](https://github.com/NicoHood/HoodLoader2) library, but I have not had a chance to try this out yet.
231227
- [Arduino MEGA](https://www.arduino.cc/en/Main/ArduinoBoardMega2560) - NOT Supported - However, it might work with the [NicoHood/HoodLoader2](https://github.com/NicoHood/HoodLoader2) library, but I have not had a chance to try this out yet.
232228

233-
(as of 2017-07-09)
229+
(as of 2017-08-19)

0 commit comments

Comments
 (0)