Advanced Settings Panel
[pierogi] / protocols / samsungprotocol.cpp
1 #include "samsungprotocol.h"
2
3 SamsungProtocol::SamsungProtocol(
4   QObject *guiObject,
5   unsigned int index)
6   : NECProtocol(
7       guiObject, index,
8       true, // extended NEC
9       false) // doesn't use short repeat
10 {
11   // Samsung doesn't use the normal header, don't ask me why...
12   headerPulse = 4500;
13   headerSpace = 4500;
14 }