33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
/**
|
|
* Copyright (C) 2016 Rik Veenboer <rik.veenboer@gmail.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package map;
|
|
|
|
import com.github.boukefalos.lirc.button.remote.SamsungBN5901015AButton;
|
|
|
|
import mimis.input.Task;
|
|
import mimis.state.TaskMap;
|
|
import mimis.value.Action;
|
|
import mimis.value.Target;
|
|
|
|
public class SamsungBN5901015AEventMap extends TaskMap {
|
|
protected static final long serialVersionUID = 1L;
|
|
|
|
public SamsungBN5901015AEventMap() {
|
|
add(SamsungBN5901015AButton.VOLUME_UP, new Task(Action.VOLUME_UP, Target.CURRENT));
|
|
}
|
|
}
|