Firmware for the Keyboardio Model 01 and other keyboards with AVR or ARM MCUs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Gergely Nagy 403754f915
README.md, example, and Travis cleanup
6 years ago
examples/HostPowerManagement README.md, example, and Travis cleanup 6 years ago
src Drop the V1 plugin API compatibility code 6 years ago
.gitignore Initial import 7 years ago
.travis.yml README.md, example, and Travis cleanup 6 years ago
COPYING Initial import 7 years ago
Makefile Initial import 7 years ago
README.md README.md, example, and Travis cleanup 6 years ago
library.properties Rename the library to HostPowerManagement 7 years ago

README.md

Kaleidoscope-HostPowerManagement

Build Status

Support performing custom actions whenever the host suspends, resumes, or is sleeping.

Using the plugin

To use the plugin, one needs to include the header, and activate it. No further configuration is necessary, unless one wants to perform custom actions.

#include <Kaleidoscope.h>
#include <Kaleidoscope-HostPowerManagement.h>

KALEIDOSCOPE_INIT_PLUGINS(HostPowerManagement);

void setup () {
  Kaleidoscope.setup ();
}

Plugin methods

The plugin provides the HostPowerManagement object, with no public methods.

Overrideable methods

hostPowerManagementEventHandler(event)

The hostPowerManagementEventHandler method is the brain of the plugin: this function tells it what action to perform in response to the various events.

Currently supported events are: kaleidoscope::HostPowerManagement::Suspend is fired once when the host suspends; kaleidoscope::HostPowerManagement::Sleep is fired every cycle while the host is suspended; kaleidoscope::HostPowerManagement::Resume is fired once when the host wakes up.

The default implementation is empty.

Further reading

Starting from the example is the recommended way of getting started with the plugin.