Hallo Telekatz,
ich versuche gerade eine "LIRC" Config für die REV 008340 Fernbedienung mit HS2260A-R4 zu erstellen.
Leider reagiert die Steckdose nicht..
/*
RF codes for REV 008340 remote control HS2260A-R4
based on hx2262 by telekatz
2010-10-04 by eme
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/>.
*/
// Bit translation:
// HX2262 LIRC_RF
// 0 00
// F (floating) 01
// 1 11
// "channel" (A0-A3)
// A: 1FFF -> 11010101 -> 0xD5
// B: F1FF -> 01110101 -> 0x75
// C: FF1F -> 01011101 -> 0x5D
// D: FFF1 -> 01010111 -> 0x57
// "device" (A4-A7)
// 1: 1FF0 -> 11010100 -> 0xD4
// 2: F1F0 -> 01110100 -> 0x74
// 3: FFF1 -> 01010111 -> 0x57
// "action" (D3-D0)
// 1: 0010 (on/+) -> 00001100 -> 0x0C
// 0: 0001 (off/-) -> 00000011 -> 0x03
/*pre_data*/ 0xD5, // A0-A3
/*post_data*/ 0x00,
/*toggle_bit_mask*/ 0x00,
/*gap*/ 58280,
/*repeat_gap*/ 58280, // gap after min_repeats
/*bits*/ 16, // data bits
/*pre_data_bits*/ 8,
/*post_data_bits*/ 0,
/*rc6_bit*/ 0,
/*frequency*/ 0x00101234, // 433,919861MHz
/*flags*/ LIRC_RF,
/*header*/ 0,0,
/*three*/ 0,0,
/*two*/ 0,0,
/*one*/ 1410,470,
/*zero*/ 470,1410,
/*plead*/ 0,
/*ptrail*/ 470, // sync pulse
/*foot*/ 0,0,
/*pre*/ 0,0,
/*post*/ 0,0,
/*repeat*/ 0,0,
/*min_repeat*/ 10,
/*duty cycle*/ 0,
{
0x0000, // A ->
0x0000, // B ->
0x0000, // C ->
0x0000, // D ->
0x0000, // Betty ->
0x0000, // Exit ->
0x0000, // Up ->
0x0000, // Down ->
0x0000, // Left ->
0x0000, // Right ->
0x0000, // OK ->
0x0000, // Vol+ ->
0x0000, // Vol- ->
0x0000, // Mute ->
0x0000, // Prog+ ->
0x0000, // Prog- ->
0xD40C, // 1 -> 1 on
0xD403, // 2 -> 1 off
0x0000, // 3 ->
0x740C, // 4 -> dim2 +
0x7403, // 5 -> dim2 -
0x0000, // 6 ->
0x570C, // 7 -> dim3 +
0x5703, // 8 -> dim3 -
0x0000, // 9 ->
0x0000, // 0 ->
0x0000, // -/-- ->
0x0000, // AV ->
0x0000, // Menu ->
0x0000, // PiP ->
0x0000, // A/B ->
0x0000, // 16:9 ->
0x0000, // Info ->
0x0000, // VTX1 ->
0x0000, // VTX2 ->
0x0000, // VTX3 ->
0x0000, // Blue ->
0x0000, // Yello ->
0x0000, // Green ->
0x0000, // Red ->
0x0000, // TV ->
0x0000 // Power ->
},
Ein Puls hat beim Original 470 µs. Es werden 12 Bits plus Synch am Ende gesendet.
Leider hat die Steckdose anscheinend keinen Ausgang für das demodulierte Signal und auch sonst fällt mir nicht ein, wie ich das Gesendete prüfen kann. Vielleicht fällt dir ja so schon auf, wo das Problem liegen könnte. Danke.