CP2101 and CP2102 do not work. They don't allow control the the TxD line.
http://www.hifi-remote.com/forums/viewt ... 933#104933
Search found 120 matches
- Sat Jun 29, 2013 1:39 pm
- Forum: JP1 - General Forum
- Topic: need help with URC 7530
- Replies: 2
- Views: 6214
- Thu May 23, 2013 8:43 pm
- Forum: JP1 - Software
- Topic: New idea: WAV files to drive IR emitter/blaster
- Replies: 81
- Views: 156541
- Thu May 23, 2013 2:04 am
- Forum: JP1 - Software
- Topic: New idea: WAV files to drive IR emitter/blaster
- Replies: 81
- Views: 156541
- Mon Feb 04, 2013 11:15 pm
- Forum: JP1 - Protocol Decodes
- Topic: Glow with the Show ears
- Replies: 69
- Views: 185325
Here are all the codes in ict format and the C++ source that created them:
http://www.compendiumarcana.com/forumpics/gwts_ict.zip
http://www.compendiumarcana.com/forumpics/gwts_ict.zip
- Mon Feb 04, 2013 1:10 am
- Forum: JP1 - Protocol Decodes
- Topic: Glow with the Show ears
- Replies: 69
- Views: 185325
Try this - it should send the blue command. If it works I will do all the other 3 byte codes.
Code: Select all
irscope 0
carrier_frequency 38005
sample_count 12
+2085
-417
+834
-834
+417
-417
+1668
-834
+417
-417
+1668
-2502
- Sun Feb 03, 2013 11:33 pm
- Forum: JP1 - Protocol Decodes
- Topic: Glow with the Show ears
- Replies: 69
- Views: 185325
OK, the receiver is probably a 38 kHz version rather than the wide band. IRDA modules look quite different, have tx/rx in one module and have rather short range.
The IR Widget capture posted by jward is certainly not IRDA. It has a ~38 kHz carrier. There are approximately 15.78 carrier cycles per ...
The IR Widget capture posted by jward is certainly not IRDA. It has a ~38 kHz carrier. There are approximately 15.78 carrier cycles per ...
- Sun Feb 03, 2013 4:04 pm
- Forum: JP1 - Protocol Decodes
- Topic: Glow with the Show ears
- Replies: 69
- Views: 185325
Thanks. Some else working on the ears on the DIY Christmas forum posted this exact same algorithm last night as the Maxim/Dallas's 1-Wire CRC-8. Does one just recognize this from years of experience?
Checksums, yes, could see that it was not a checksum. Had to write some code to test the popular ...
- Sat Feb 02, 2013 11:56 pm
- Forum: JP1 - Protocol Decodes
- Topic: Glow with the Show ears
- Replies: 69
- Views: 185325
jward wrote:I brute-forced the checksums to make them work
Code: Select all
uint8_t gws_crc(uint8_t *d, unsigned len)
{
crc = 0;
while(len--) {
crc ^= *d++;
unsigned n = 8; do crc = (crc & 1) ? (crc >> 1) ^ 0x8C : crc >> 1; while(--n);
}
return crc;
}
- Sat Dec 08, 2012 10:51 pm
- Forum: JP1 - Software
- Topic: The future of JP1 in the 64-bit world
- Replies: 82
- Views: 108207
- Sat Dec 08, 2012 10:38 pm
- Forum: JP1 - Software
- Topic: The future of JP1 in the 64-bit world
- Replies: 82
- Views: 108207
- Sat Dec 08, 2012 6:22 pm
- Forum: JP1 - Software
- Topic: The future of JP1 in the 64-bit world
- Replies: 82
- Views: 108207
- Sat Dec 08, 2012 6:16 pm
- Forum: JP1 - Hardware
- Topic: Making my own USB cable to interface to a JP1.1 remote.
- Replies: 2
- Views: 12186
I don't think anyone has had success with the CP2101/CP2102
The CP2101 doesn't support break. The CP2102 does, but is seems to be broken.
http://www.hifi-remote.com/forums/viewt ... 933#104933
The CP2101 doesn't support break. The CP2102 does, but is seems to be broken.
http://www.hifi-remote.com/forums/viewt ... 933#104933
- Sat Dec 08, 2012 4:31 pm
- Forum: JP1 - Software
- Topic: The future of JP1 in the 64-bit world
- Replies: 82
- Views: 108207
- Sat Nov 10, 2012 4:25 pm
- Forum: JP1 - Hardware
- Topic: Why infrared receiver modules have a normally high output
- Replies: 2
- Views: 8107
The IR receiver module would typically be connected to a timer/counter unit input. That allows the exact time of a rising and/or falling edge to be captured and an interrupt triggered conditionally. For some protocols such as Sony and RC5/6 it is necessary to know the time of both edges, for NEC and ...
- Thu Aug 16, 2012 8:02 am
- Forum: JP1 - Hardware
- Topic: Silabs CP2101
- Replies: 9
- Views: 20467