Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: mewbak/evdev

Tags

v0.0.18

Toggle v0.0.18's commit message
Extends examples/keys program to also read individual

key/button press events.

v0.0.17

Toggle v0.0.17's commit message
Adds the evdev.Find() function, along with IsKeyboard, IsMouse

and IsJoystick. Find() can be used to return a list of
attached devices which qualify as the device represented by
the given constant. E.g.:

    keyboards, err := evdev.Find(evdev.Keyboard)

This returns a list of open devices which behave like a keyboard.
These may not actually be keyboards, but they support the events
that we expect from one: reporting key states and LED events.

When looking for Mouse devices, this may also return trackpads
and multi-touch screens. it is up to the host application to
figure out which one to actually use.

Adds an example program to demonstrate its use.

v0.0.16

Toggle v0.0.16's commit message
More code reformatting and additions of documentation.

v0.0.15

Toggle v0.0.15's commit message
Performs further refactoring.

Splits code up into more files. Combining all related
components for a given event type into its respective
file.

Adds a great deal of code comments, covering explanations
of what various types, methods and constants mean.

v0.0.14

Toggle v0.0.14's commit message
Renames Device.Supports() to Device.Test().

Given the multiple use cases this method has,
it is a better fit.

Fixes example programs to reflect this change.

v0.0.13

Toggle v0.0.13's commit message
Factors a lot of the API code out into separate files,

to keep the codebsae cleaner and easier to follow.

v0.0.12

Toggle v0.0.12's commit message
Applies code cleanup and refactoring to Device type.

Adds and fixes code comments.
Adds more Force feedback API implementation code to
the Device type.

Fixes example programs to reflect new changes.

v0.0.11

Toggle v0.0.11's commit message
Fixes examples/keys program.

v0.0.10

Toggle v0.0.10's commit message
Adds examples/exclusive program. It demomonstrates how to

obtain and release an exclusive lock on a device.

v0.0.9

Toggle v0.0.9's commit message
Adds examples/forcefeedback to demonstrate how to use the

various FF related API components.

This allows one to query for Force Feedback capabilities,
create and upload new effects and toggle their play state.