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.

17 lines
370 B

9 years ago
#include <QCoreApplication>
#include "keyboard.h"
int main(int argc, char *argv[]) {
QCoreApplication app(argc, argv);
Keyboard k;
k.setMode(MODE_NORMAL);
k.setColor(REGION_LEFT, COLOR_RED, INTENSITY_HIGH);
k.setColor(REGION_MIDDLE, COLOR_PURPLE, INTENSITY_HIGH);
k.setColor(REGION_RIGHT, COLOR_SKY, INTENSITY_HIGH);
return 0;
//return app.exec();
}