* Send repeat * Repeat commands should be sent in a 110 ms raster. * This repeat was sent by an LG 6711R1P071A remote */
| 116 | * This repeat was sent by an LG 6711R1P071A remote |
| 117 | */ |
| 118 | void IRsend::sendSamsungLGRepeat() { |
| 119 | enableIROut (SAMSUNG_KHZ); // 38 kHz |
| 120 | mark(SAMSUNG_HEADER_MARK); // + 4500 |
| 121 | space(SAMSUNG_HEADER_SPACE); // - 4500 |
| 122 | mark(SAMSUNG_BIT_MARK); // + 560 |
| 123 | space(SAMSUNG_ZERO_SPACE); // - 560 |
| 124 | mark(SAMSUNG_BIT_MARK); // + 560 |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Like above, but implemented as a static function |
nothing calls this directly
no outgoing calls
no test coverage detected