User Tools

Site Tools


2016:sending_samsung_raw

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
2016:sending_samsung_raw [2016/06/25 17:25] 75.177.137.22016:sending_samsung_raw [2016/06/25 18:01] (current) 75.177.137.2
Line 1: Line 1:
-Samsung remote IR-codes+===== Samsung remote IR-codes =====
  
 The IRremote library could not parse samsung infrared data, but The IRremote library could not parse samsung infrared data, but
 here's the raw codes with examples how to send them. I only read here's the raw codes with examples how to send them. I only read
-the most used buttons. Codes are already in variables :)+the most used buttons. Codes are already in variables :)\\
  
 Codes: Codes:
Line 76: Line 76:
 Remote will probably work in all samsung models, but with LE40M8 for sure. Remote will probably work in all samsung models, but with LE40M8 for sure.
 Posted by Ville Valta at 2.6.11 Posted by Ville Valta at 2.6.11
-Email This 
-BlogThis! 
-Share to Twitter 
-Share to Facebook 
-Share to Pinterest 
  
 20 comments: 20 comments:
Line 110: Line 105:
 https://docs.google.com/spreadsheet/ccc?key=0Aupzmp8AqC8JdGtNOXhUc0R0WC1hbVdRa0p3aDVxdFE#gid=0 https://docs.google.com/spreadsheet/ccc?key=0Aupzmp8AqC8JdGtNOXhUc0R0WC1hbVdRa0p3aDVxdFE#gid=0
  
-anyway, I'm not able to compute the checksum (2 byte of every burst). If anyone figured it out, please let me know.+anyway, I'm not able to compute the checksum (2 byte of every burst). If anyone figured it out, please let me know.\\ 
  
-Reply 
 Replies Replies
  
-AnonymousSunday, September 08, 2013 5:01:00 PM +AnonymousSunday, September 08, 2013 5:01:00 PM\\ 
-Hey! +Hey!\\ 
-Your results will make more sense if you (1) invert 0/1 bits, (2) interpret data so that LSB are transmitted first. Then at least temperature will look better (that half-byte is just offset from its minimum temperature of 16C).+Your results will make more sense if you (1) invert 0/1 bits, (2) interpret data so that LSB are transmitted first. Then at least temperature will look better (that half-byte is just offset from its minimum temperature of 16C).\\
  
  
-I do not see any checksum there: consider t=21 and t=22 commands, except for the temperature-related bits there's no difference at all. Although its not quite clear what is in the second byte of the second package, which changes usually but not always with t change.+I do not see any checksum there: consider t=21 and t=22 commands, except for the temperature-related bits there's no difference at all. Although its not quite clear what is in the second byte of the second package, which changes usually but not always with t change.\\
  
 /Dmitry. /Dmitry.
Line 134: Line 129:
  
 Reply Reply
- 
-richSaturday, September 08, 2012 10:05:00 PM 
-Hello, have you got the other button codes please ? 
 Actually i need to scan some channel on my tv and i lost my remote. Actually i need to scan some channel on my tv and i lost my remote.
  
Line 145: Line 137:
 Islam QabelThursday, February 07, 2013 3:44:00 PM Islam QabelThursday, February 07, 2013 3:44:00 PM
 Hi Hi
-I do not understand the raw data,all i know that for samsung the data is 32 bit (data+address) plus one start bit and one stop bit, for example for Samsung TV press"1" button in HEX as follows: FB040707 which will be sent from LSB to MSB as follows+I do not understand the raw data,all i know that for samsung the data is 32 bit (data+address) plus one start bit and one stop bit, for example for Samsung TV press"1" button in HEX as follows: FB040707 which will be sent from LSB to MSB as follows\\ 
 + 
 +<code>
 the original ordering is from MSB to LSB the original ordering is from MSB to LSB
 1111 1011 0000 0100 0000 0111 0000 0111 1111 1011 0000 0100 0000 0111 0000 0111
Line 151: Line 145:
 start bit +1110 0000 1110 0000 0010 0000 1101 1111+stop bit start bit +1110 0000 1110 0000 0010 0000 1101 1111+stop bit
 so how to understand the codes above??? please help so how to understand the codes above??? please help
 +</code>
  
 Reply Reply
  
 Islam QabelFriday, February 08, 2013 2:59:00 AM Islam QabelFriday, February 08, 2013 2:59:00 AM
-Got it +Got it. 
-the first two numbers represents the start bit ON & OFF durations +The first two numbers represents the start bit ON & OFF durations\\ 
-the last number is ON for stop bit +the last number is ON for stop bit\\ 
-so the code will be started from the third number to the number before the last number....Here is the decoding procedure: +so the code will be started from the third number to the number before the last number....Here is the decoding procedure:\\ 
 +<code>
 Since for Samsung IR coding.... Since for Samsung IR coding....
 Start bit: 4500us ON 4500us OFF Start bit: 4500us ON 4500us OFF
Line 165: Line 160:
 Logic "0": 560us ON 560us OFF Logic "0": 560us ON 560us OFF
 Stop bit : 560us ON 560us OFF Stop bit : 560us ON 560us OFF
 +</code>
  
 for example:to decode Power ON/OFF for example:to decode Power ON/OFF
 +<code>
 4600,4350 is the starting bit 4600,4350 is the starting bit
 700,1550 is "1" also for 650,1550...650,1600 700,1550 is "1" also for 650,1550...650,1600
 650,450 is "0" also for 700,450....700,400 650,450 is "0" also for 700,450....700,400
-so the transmitting code is start bit+ "1110 0000 1110 0000 0100 0000 1011 1111" + stop bit......i tried these codes for Power ON/OFF, Volume Up, Volume down, Source input and button "1" and tested successfully on my LCD TV/PC/component monitor +</code> 
-Anyway thanks for the great work+so the transmitting code is start bit+ "1110 0000 1110 0000 0100 0000 1011 1111" + stop bit......i tried these codes for Power ON/OFF, Volume Up, Volume down, Source input and button "1" and tested successfully on my LCD TV/PC/component monitor\\ 
 +Anyway thanks for the great work\\
  
 Reply Reply
Line 192: Line 190:
 It is work thank for this post It is work thank for this post
  
-Reply 
- 
-Kevin PyrTuesday, December 17, 2013 9:53:00 PM 
-Thank's you!!!! 
  
 Reply Reply
Line 210: Line 204:
  
 AnonymousMonday, March 10, 2014 11:36:00 AM AnonymousMonday, March 10, 2014 11:36:00 AM
-can someone please tell me what exactly raw codes are?? I am a novice at all this.. please help! :) Thanx +can someone please tell me what exactly raw codes are?? I am a novice at all this.. please help! :) Thanx\\
- +
-Reply +
- +
-AnonymousMonday, March 10, 2014 11:48:00 AM +
-do you have similar raw codes for Panasonic? +
- +
-Reply +
- +
-AnonymousSaturday, September 26, 2015 1:15:00 PM +
-hey thanks.................;+
-really worked for me.When sending hex codes samsung tv was not responding but sending the raw data it works....... +
- +
-Reply +
- +
-Nekem8Thursday, October 22, 2015 11:00:00 PM +
-thanks a lot :) +
-works fine with t22c300 TVmonitor+
  
 Reply Reply
  
-gvorsterWednesday, December 09, 2015 6:41:00 PM +gvorsterWednesday, December 09, 2015 6:41:00 PM\\ 
-Works for me too on my Samsung tv! Really would like to know how to record the raw codes for Samsung. I need it to get the codes for the 'SOURCE' button on my remote, which pops up a submenu on the tv showing options for 'TV', 'HDMI1', 'HDMI2'. Are these 2 separate raw codes to send: one for the 'source' button and one for the related submenu option. Or is it one direct code for the submenu option?+Works for me too on my Samsung tv! Really would like to know how to record the raw codes for Samsung. I need it to get the codes for the 'SOURCE' button on my remote, which pops up a submenu on the tv showing options for 'TV', 'HDMI1', 'HDMI2'. Are these 2 separate raw codes to send: one for the 'source' button and one for the related submenu option. Or is it one direct code for the submenu option?\\
  
 Reply Reply
2016/sending_samsung_raw.1466889901.txt.gz · Last modified: 2016/06/25 17:25 by 75.177.137.2