{"id":8804,"date":"2020-10-12T11:31:50","date_gmt":"2020-10-12T11:31:50","guid":{"rendered":"https:\/\/wolles-elektronikkiste.de\/radio-sockets-and-hand-transmitters"},"modified":"2023-12-01T20:26:27","modified_gmt":"2023-12-01T20:26:27","slug":"radio-sockets-and-hand-transmitters","status":"publish","type":"post","link":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters","title":{"rendered":"Radio sockets and hand transmitters"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">What is it all about?<\/h2>\n\n<p>Many radio-controlled devices such as garage doors, window sensors, radio sockets and hand transmitters are based on 433 MHz technology. In my <a href=\"https:\/\/wolles-elektronikkiste.de\/en\/433-mhz-radio-with-arduino\">last post<\/a> I showed how to send data from one Arduino to another with transmitter and receiver modules. In this article I show how an Arduino can communicate with the above devices. Using the example of radio sockets and the RCSwitch library, I explain the principle and at the end I present a self-built hand-held transmitter.\u00a0<\/p>\n\n<h2 class=\"wp-block-heading\">Radio socket sets<\/h2>\n\n<p>Radio sockets are usually offered as a set consisting of one transmitter and several sockets. Such sets are available for 10 to 30 euros in electronics stores or online shops. There are sockets that can &#8220;learn&#8221; on\/off signals and others for which you can adjust the channels via dip switches (in German language also known as &#8220;M\u00e4useklavier&#8221; = &#8220;mouse piano&#8221;). Both versions can be controlled with the Arduino, but I advise to take those with dip switches, as they are more flexible.<\/p>\n\n<h3 class=\"wp-block-heading\">Setting without Arduino (just hand transmitter to socket)<\/h3>\n\n<p>On the transmitter side, the coding is set with the dip switches 1 to 5. This must match the coding at the power outlet. The dip switches A to E determine which transmitter button the socket &#8220;listens&#8221; to, in this case B. The setting shown here is used in all other explanations and examples.\u00a0<\/p>\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/maeuseklavier_klein-1024x308.webp\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"308\" src=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/maeuseklavier_klein-1024x308.webp\" alt=\"\" class=\"wp-image-19528\" srcset=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/maeuseklavier_klein-1024x308.webp 1024w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/maeuseklavier_klein-300x90.webp 300w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/maeuseklavier_klein-768x231.webp 768w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/maeuseklavier_klein-1320x397.webp 1320w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/maeuseklavier_klein.webp 1476w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\">Dip switch at the transmitter (left) and at the socket (right)<\/figcaption><\/figure>\n\n<h2 class=\"wp-block-heading\">The RCSwitch Library <\/h2>\n\n<p>We don&#8217;t want to use the set as such, but either control an Arduino with the transmitter or control a radio socket with an Arduino. If you don&#8217;t want to get into the depths of signal transmission, you first need a library. For this post I have chosen the <a href=\"https:\/\/github.com\/sui77\/rc-switch\">RCSwitch library.<\/a> To install, simply follow the link, download as a zip file and unzip it in the Arduino\\libraries directory. \u00a0<\/p>\n\n<h2 class=\"wp-block-heading\">The hardware<\/h2>\n\n<p><p>I use the modules presented in my <a href=\"https:\/\/wolles-elektronikkiste.de\/en\/433-mhz-radio-with-arduino\">last post<\/a> (see below). For details just go back to the post. It&#8217;s as simple as that: in order to attach the transmitter and the receiver to the Arduino, GND is connected to GND, VCC with 5 V and the data pin depending on the specification from the sample sketches. Don&#8217;t forget the antennas, which may still need to be soldered to the modules.<\/p><\/p>\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Funkset-1-1024x456.jpg\" alt=\"\" class=\"wp-image-637\"\/><figcaption class=\"wp-element-caption\">These modules are used in this article<\/figcaption><\/figure>\n\n<h2 class=\"wp-block-heading\">Here we go<\/h2>\n\n<h3 class=\"wp-block-heading\">Use of dip switch systems<\/h3>\n\n<p>To control the wireless socket by the transmitter module, simply adjust the sample sketch &#8220;TypeA_WithDIPSwitches.ino&#8221; from the RCSwitch library according to the dip switch \u00a0setting. The sketch is self-explanatory. \u00a0 And that&#8217;s it! If everything is set up correctly, the radio socket should be switched on and off with this example every one second.\u00a0<\/p>\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-group=\"TypeA_WithDIPSwitches.ino\" data-enlighter-title=\"TypeA_WithDIPSwitches.ino\">\/*\r\n Examples of sockets which are configured with a 10 pole DIP switch.\r\n  \r\n https:\/\/github.com\/sui77\/rc-switch\/\r\n*\/\r\n\r\n#include &lt;RCSwitch.h&gt;\r\n\r\nRCSwitch mySwitch = RCSwitch();\r\n\r\nvoid setup() {\r\n\r\n  \/\/ Transmitter is connected to Arduino Pin #10 \r\n  mySwitch.enableTransmit(10);\r\n\r\n  \/\/ Optional set pulse length.\r\n  \/\/ mySwitch.setPulseLength(320);\r\n  \r\n}\r\n\r\nvoid loop() {\r\n\r\n  \/\/ Switch on:\r\n  \/\/ The first parameter represents the setting of the first 5 DIP switches. \r\n  \/\/ In this example it's OFF-ON-OFF-ON-ON.\r\n  \/\/  \r\n  \/\/ The second parameter represents the setting of the last 5 DIP switches. \r\n  \/\/ In this example the last 5 DIP switches are OFF-ON-OFF-OFF-OFF. \r\n  mySwitch.switchOn(\"01011\", \"01000\");\r\n\r\n  \/\/ Wait a second\r\n  delay(1000);\r\n  \r\n  \/\/ Switch off\r\n  mySwitch.switchOff(\"01011\", \"01000\");\r\n  \r\n  \/\/ Wait another second\r\n delay(1000);\r\n  \r\n}<\/pre>\r\n<p>&nbsp;<\/p>\n\n<h3 class=\"wp-block-heading\">Use of other systems without dip switches<\/h3>\n\n<h4 class=\"wp-block-heading\">Analyzing the radio code<\/h4>\n\n<p>For other systems (i.e. those without dip switches) you first have to find out the radio code. For this purpose, use the receiver module, the transmitter from the set and preferably the sample sketch &#8220;ReceiveDemo_Advanced.ino&#8221;. Make sure that the data pin of the receiver module is connected to pin 2 of the Arduino. \u00a0<\/p>\n\n<div class=\"scroll-paragraph-long\">\r\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-group=\"ReceiveDemo_Advanced.ino\" data-enlighter-title=\"ReceiveDemo_Advanced.ino\">\/*\r\n Example for receiving\r\n  \r\n https:\/\/github.com\/sui77\/rc-switch\/\r\n  \r\n If you want to visualize a telegram copy the raw data and \r\n paste it into http:\/\/test.sui.li\/oszi\/\r\n*\/\r\n\r\n#include &lt;RCSwitch.h&gt;\r\nstatic const char* bin2tristate(const char* bin);\r\nstatic char * dec2binWzerofill(unsigned long Dec, unsigned int bitLength);\r\n\r\nRCSwitch mySwitch = RCSwitch();\r\n\r\nvoid setup() {\r\n  Serial.begin(9600);\r\n  mySwitch.enableReceive(0); \/\/ Receiver on interrupt 0 =&gt; that is pin #2\r\n}\r\n\r\nvoid loop() {\r\n  if (mySwitch.available()) {\r\n  output(mySwitch.getReceivedValue(), mySwitch.getReceivedBitlength(),mySwitch.getReceivedDelay(), mySwitch.getReceivedRawdata(),mySwitch.getReceivedProtocol());\r\n  mySwitch.resetAvailable();\r\n  }\r\n}\r\n\r\nvoid output(unsigned long decimal, unsigned int length, unsigned int delay, unsigned int* raw, unsigned int protocol) {\r\n\r\n  const char* b = dec2binWzerofill(decimal, length);\r\n  Serial.print(\"Decimal: \");\r\n  Serial.print(decimal);\r\n  Serial.print(\" (\");\r\n  Serial.print( length );\r\n  Serial.print(\"Bit) Binary: \");\r\n  Serial.print( b );\r\n  Serial.print(\" Tri-State: \");\r\n  Serial.print( bin2tristate( b) );\r\n  Serial.print(\" PulseLength: \");\r\n  Serial.print(delay);\r\n  Serial.print(\" microseconds\");\r\n  Serial.print(\" Protocol: \");\r\n  Serial.println(protocol);\r\n  \r\n  Serial.print(\"Raw data: \");\r\n  for (unsigned int i=0; i&lt;= length*2; i++) {\r\n    Serial.print(raw[i]);\r\n    Serial.print(\",\");\r\n  }\r\n  Serial.println();\r\n  Serial.println();\r\n}\r\n\r\nstatic const char* bin2tristate(const char* bin) {\r\n  static char returnValue[50];\r\n  int pos = 0;\r\n  int pos2 = 0;\r\n  while (bin[pos]!='\\0' &amp;&amp; bin[pos+1]!='\\0') {\r\n    if (bin[pos]=='0' &amp;&amp; bin[pos+1]=='0') {\r\n      returnValue[pos2] = '0';\r\n    } else if (bin[pos]=='1' &amp;&amp; bin[pos+1]=='1') {\r\n      returnValue[pos2] = '1';\r\n    } else if (bin[pos]=='0' &amp;&amp; bin[pos+1]=='1') {\r\n      returnValue[pos2] = 'F';\r\n    } else {\r\n      return \"not applicable\";\r\n    }\r\n    pos = pos+2;\r\n    pos2++;\r\n  }\r\n  returnValue[pos2] = '\\0';\r\n  return returnValue;\r\n}\r\n\r\nstatic char * dec2binWzerofill(unsigned long Dec, unsigned int bitLength) {\r\n  static char bin[64]; \r\n  unsigned int i=0;\r\n\r\n  while (Dec &gt; 0) {\r\n    bin[32+i++] = ((Dec &amp; 1) &gt; 0) ? '1' : '0';\r\n    Dec = Dec &gt;&gt; 1;\r\n  }\r\n\r\n  for (unsigned int j = 0; j&lt; bitLength; j++) {\r\n    if (j &gt;= bitLength - i) {\r\n      bin[j] = bin[ 31 + i - (j - (bitLength - i)) ];\r\n    } else {\r\n        bin[j] = '0';\r\n    }\r\n  }\r\n  bin[bitLength] = '\\0';\r\n  \r\n  return bin;\r\n}<\/pre>\r\n<p>&nbsp;<\/p>\r\n<\/div>\n\n<p>After starting the sketch and pressing the selected send button, you get the following message for &#8220;ON&#8221; and &#8220;OFF&#8221; on the serial monitor (if the transmitter is set as shown above and using channel B):<\/p>\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"618\" height=\"187\" src=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Meldung-1.png\" alt=\"\" class=\"wp-image-683\" srcset=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Meldung-1.png 618w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Meldung-1-300x91.png 300w\" sizes=\"auto, (max-width: 618px) 100vw, 618px\" \/><figcaption class=\"wp-element-caption\">Above: &#8220;On&#8221; signal, bottom: &#8220;Off&#8221; signal<\/figcaption><\/figure>\n\n<p>This is the respective radio code in decimal, binary or tristate format. In the tristate format, you see the dip switch setting by replacing &#8220;F&#8221; with &#8220;OFF&#8221; and &#8220;0&#8221; with &#8220;ON&#8221;. The last &#8220;0F&#8221; or &#8220;F0&#8221; means power on or off, respectively. In binary code, &#8220;01&#8221; and &#8220;00&#8221; represent &#8220;OFF&#8221; or &#8220;ON&#8221; (not really important, but maybe interesting).<\/p>\r\n<p>Then write down the code for switching on and off in one of the formats. \u00a0<\/p>\n\n<h4 class=\"wp-block-heading\">Sending the radio code<\/h4>\n\n<p>For sending this radio code by means of a transmitter module, we take a look at the sample sketch &#8220;SendDemo.ino&#8221;, which I have already adapted for our sample transmitter:\u00a0<\/p>\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-group=\"SendDemo.ino\" data-enlighter-title=\"SendDemo.ino\">\/*\r\n Example for different sending methods\r\n  \r\n https:\/\/github.com\/sui77\/rc-switch\/\r\n  \r\n*\/\r\n\r\n#include &lt;RCSwitch.h&gt;\r\n\r\nRCSwitch mySwitch = RCSwitch();\r\n\r\nvoid setup() {\r\n\r\n  Serial.begin(9600);\r\n  \r\n  \/\/ Transmitter is connected to Arduino Pin #10 \r\n  mySwitch.enableTransmit(10);\r\n  \r\n  \/\/ Optional set protocol (default is 1, will work for most outlets)\r\n  \/\/ mySwitch.setProtocol(2);\r\n\r\n  \/\/ Optional set pulse length.\r\n  \/\/ mySwitch.setPulseLength(320);\r\n  \r\n  \/\/ Optional set number of transmission repetitions.\r\n  \/\/ mySwitch.setRepeatTransmit(15);\r\n  \r\n}\r\n\r\nvoid loop() {\r\n\r\n  \/* See Example: TypeA_WithDIPSwitches *\/\r\n  mySwitch.switchOn(\"01011\", \"01000\");\r\n  delay(1000);\r\n  mySwitch.switchOff(\"01011\", \"01000\");\r\n  delay(1000);\r\n\r\n  \/* Same switch as above, but using decimal code *\/\r\n  mySwitch.send(4460881, 24);\r\n  delay(1000); \r\n  mySwitch.send(4460884, 24);\r\n  delay(1000); \r\n\r\n  \/* Same switch as above, but using binary code *\/\r\n  mySwitch.send(\"010001000001000101010001\");\r\n  delay(1000); \r\n  mySwitch.send(\"010001000001000101010100\");\r\n  delay(1000);\r\n \r\n  \/* Same switch as above, but tri-state code *\/ \r\n  mySwitch.sendTriState(\"F0F00F0FFF0F\");\r\n  delay(1000); \r\n  mySwitch.sendTriState(\"F0F00F0FFFF0\");\r\n  delay(1000);\r\n\r\n  delay(5000);\r\n}<\/pre>\r\n<p>&nbsp;<\/p>\n\n<p>For illustration all sending methods are used in the above example. Of course, you only need one of them.\u00a0<\/p>\n\n<h2 class=\"wp-block-heading\">Hand transmitters<\/h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><a href=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender-549x1024.webp\"><img loading=\"lazy\" decoding=\"async\" width=\"549\" height=\"1024\" src=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender-549x1024.webp\" alt=\"\" class=\"wp-image-19530\" style=\"aspect-ratio:0.53515625;width:227px;height:auto\" srcset=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender-549x1024.webp 549w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender-161x300.webp 161w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender.webp 700w\" sizes=\"auto, (max-width: 549px) 100vw, 549px\" \/><\/a><figcaption class=\"wp-element-caption\"><p>Hand transmitter<\/p><\/figcaption><\/figure>\n<\/div>\n<p>Most of the time you will want to control a radio socket with a transmitter module. If you want to send signals to your Arduino with the transmitting unit, you can buy just a hand transmitter (i.e. without a set) like the one shown above. I found a really cool &#8220;hardware hack&#8221; with exactly this transmitter <a href=\"https:\/\/moviesgamesandtech.com\/2014\/02\/15\/build-wireless-motion-sensor-raspberry-pi\/\">here.<\/a> There it is described how to convert the hand transmitter with a motion detector into a wireless motion detector, which does not need another Arduino or microcontroller on the transmission side. I have tried it and it works fine.\u00a0<\/p>\n\n<h3 class=\"wp-block-heading\">A self-made hand transmitter<\/h3>\n\n<p>Then I wanted to build a hand transmitter myself. My goal was to construct it as minimalistic as possible. Above all, I didn&#8217;t want to add an extra on\/off switch for the microcontroller besides the send button, because hand held transmitters that you can buy usually do also not have an on\/off switch. The result is the following:\u00a0<\/p>\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein.webp\"><img loading=\"lazy\" decoding=\"async\" width=\"1647\" height=\"614\" src=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein.webp\" alt=\"DIY hand transmitter\" class=\"wp-image-19532\" srcset=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein.webp 1647w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein-300x112.webp 300w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein-1024x382.webp 1024w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein-768x286.webp 768w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein-1536x573.webp 1536w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Selbstbausender_klein-1320x492.webp 1320w\" sizes=\"auto, (max-width: 1647px) 100vw, 1647px\" \/><\/a><figcaption class=\"wp-element-caption\">DIY hand transmitter<\/figcaption><\/figure>\n\n<p>Only a pushbutton, an ATtiny85, a simple transmitter module and a 3.7 V Li battery from drone construction were used as electrical components. You may notice that no antenna has been used. Depending on the quality of the receiving device and the desired distance, this is might not be necessary.\u00a0<\/p>\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"512\" src=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender_Schaltplan-1024x512.png\" alt=\"\" class=\"wp-image-698\" srcset=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender_Schaltplan-1024x512.png 1024w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender_Schaltplan-300x150.png 300w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender_Schaltplan-768x384.png 768w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender_Schaltplan-860x430.png 860w, https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Handsender_Schaltplan.png 1033w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n<p>How can you get by with just one button? Quite simple: it&#8217;s a question of timing. Pressing the button starts the power supply and thus the sketch. After a few fractions of a second, the &#8220;On&#8221; signal is sent. To be on the safe side, I send the signal three times. If I want to send an &#8220;off&#8221; signal, I just stay on the button for another second, otherwise I&#8217;ll just let go. Here is the simple sketch: \u00a0<\/p>\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-group=\"Handsender.ino\" data-enlighter-title=\"Handsender.ino\">#include &lt;RCSwitch.h&gt;\r\n\r\nRCSwitch mySwitch = RCSwitch();\r\n\r\nvoid setup() {\r\n  mySwitch.enableTransmit(4);\r\n  mySwitch.setPulseLength(311);\r\n  delay(10);\r\n}\r\n\r\nvoid loop() {\r\n  mySwitch.send(\"010001000001000101010001\");\r\n  delay(5);\r\n  mySwitch.send(\"010001000001000101010001\");\r\n  delay(5);\r\n  mySwitch.send(\"010001000001000101010001\");\r\n  delay(1000);\r\n  mySwitch.send(\"010001000001000101010100\");\r\n  delay(5);\r\n  mySwitch.send(\"010001000001000101010100\");\r\n  delay(5);\r\n  mySwitch.send(\"010001000001000101010100\");\r\n  delay(5);\r\n  delay(5000);\r\n}<\/pre>\r\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to use radio sockets and hand transmitters using Arduino. The RCSwitch library is used. In addition: Build hand transmitters by yourself. <\/p>\n","protected":false},"author":1,"featured_media":7856,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[545,548],"tags":[551,556,582,584,579,578,581],"class_list":["post-8804","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-433-mhz-en","category-wireless","tag-433-mhz-en","tag-arduino-en-2","tag-attiny-en","tag-build-hand-transmitters-by-yourself-2","tag-hand-transmitters","tag-radio-sockets-en","tag-rcswitch-en-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Radio sockets and hand transmitters &#8226; Wolles Elektronikkiste<\/title>\n<meta name=\"description\" content=\"How to use radio sockets and hand transmitter with Arduino. The RCSwitch library is used. In addition: Build hand transmitters by yourself.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Radio sockets and hand transmitters &#8226; Wolles Elektronikkiste\" \/>\n<meta property=\"og:description\" content=\"How to use radio sockets and hand transmitter with Arduino. The RCSwitch library is used. In addition: Build hand transmitters by yourself.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters\" \/>\n<meta property=\"og:site_name\" content=\"Wolles Elektronikkiste\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-12T11:31:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T20:26:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Funkset-2-e1552216950499.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"375\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Wolfgang Ewald\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Wolfgang Ewald\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters\"},\"author\":{\"name\":\"Wolfgang Ewald\",\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en#\\\/schema\\\/person\\\/b774e4d64b4766889a2f7c6e5ec85b46\"},\"headline\":\"Radio sockets and hand transmitters\",\"datePublished\":\"2020-10-12T11:31:50+00:00\",\"dateModified\":\"2023-12-01T20:26:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters\"},\"wordCount\":986,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en#\\\/schema\\\/person\\\/b774e4d64b4766889a2f7c6e5ec85b46\"},\"image\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Funkset-2-e1552216950499.jpg\",\"keywords\":[\"433 MHz\",\"Arduino\",\"ATtiny\",\"Build hand transmitters by yourself\",\"hand transmitters\",\"Radio sockets\",\"RCSwitch\"],\"articleSection\":[\"433 MHz\",\"Wireless\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters\",\"url\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters\",\"name\":\"Radio sockets and hand transmitters &#8226; Wolles Elektronikkiste\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Funkset-2-e1552216950499.jpg\",\"datePublished\":\"2020-10-12T11:31:50+00:00\",\"dateModified\":\"2023-12-01T20:26:27+00:00\",\"description\":\"How to use radio sockets and hand transmitter with Arduino. The RCSwitch library is used. In addition: Build hand transmitters by yourself.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#primaryimage\",\"url\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Funkset-2-e1552216950499.jpg\",\"contentUrl\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Funkset-2-e1552216950499.jpg\",\"width\":375,\"height\":450},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\\\/radio-sockets-and-hand-transmitters#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Radio sockets and hand transmitters\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en#website\",\"url\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en\",\"name\":\"Wolles Elektronikkiste\",\"description\":\"Die wunderbare Welt der Elektronik\",\"publisher\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en#\\\/schema\\\/person\\\/b774e4d64b4766889a2f7c6e5ec85b46\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/en#\\\/schema\\\/person\\\/b774e4d64b4766889a2f7c6e5ec85b46\",\"name\":\"Wolfgang Ewald\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/cropped-Logo-1.png\",\"url\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/cropped-Logo-1.png\",\"contentUrl\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/cropped-Logo-1.png\",\"width\":512,\"height\":512,\"caption\":\"Wolfgang Ewald\"},\"logo\":{\"@id\":\"https:\\\/\\\/wolles-elektronikkiste.de\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/cropped-Logo-1.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Radio sockets and hand transmitters &#8226; Wolles Elektronikkiste","description":"How to use radio sockets and hand transmitter with Arduino. The RCSwitch library is used. In addition: Build hand transmitters by yourself.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters","og_locale":"en_US","og_type":"article","og_title":"Radio sockets and hand transmitters &#8226; Wolles Elektronikkiste","og_description":"How to use radio sockets and hand transmitter with Arduino. The RCSwitch library is used. In addition: Build hand transmitters by yourself.","og_url":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters","og_site_name":"Wolles Elektronikkiste","article_published_time":"2020-10-12T11:31:50+00:00","article_modified_time":"2023-12-01T20:26:27+00:00","og_image":[{"width":375,"height":450,"url":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Funkset-2-e1552216950499.jpg","type":"image\/jpeg"}],"author":"Wolfgang Ewald","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Wolfgang Ewald","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#article","isPartOf":{"@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters"},"author":{"name":"Wolfgang Ewald","@id":"https:\/\/wolles-elektronikkiste.de\/en#\/schema\/person\/b774e4d64b4766889a2f7c6e5ec85b46"},"headline":"Radio sockets and hand transmitters","datePublished":"2020-10-12T11:31:50+00:00","dateModified":"2023-12-01T20:26:27+00:00","mainEntityOfPage":{"@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters"},"wordCount":986,"commentCount":0,"publisher":{"@id":"https:\/\/wolles-elektronikkiste.de\/en#\/schema\/person\/b774e4d64b4766889a2f7c6e5ec85b46"},"image":{"@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#primaryimage"},"thumbnailUrl":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Funkset-2-e1552216950499.jpg","keywords":["433 MHz","Arduino","ATtiny","Build hand transmitters by yourself","hand transmitters","Radio sockets","RCSwitch"],"articleSection":["433 MHz","Wireless"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters","url":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters","name":"Radio sockets and hand transmitters &#8226; Wolles Elektronikkiste","isPartOf":{"@id":"https:\/\/wolles-elektronikkiste.de\/en#website"},"primaryImageOfPage":{"@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#primaryimage"},"image":{"@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#primaryimage"},"thumbnailUrl":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Funkset-2-e1552216950499.jpg","datePublished":"2020-10-12T11:31:50+00:00","dateModified":"2023-12-01T20:26:27+00:00","description":"How to use radio sockets and hand transmitter with Arduino. The RCSwitch library is used. In addition: Build hand transmitters by yourself.","breadcrumb":{"@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#primaryimage","url":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Funkset-2-e1552216950499.jpg","contentUrl":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/Funkset-2-e1552216950499.jpg","width":375,"height":450},{"@type":"BreadcrumbList","@id":"https:\/\/wolles-elektronikkiste.de\/en\/radio-sockets-and-hand-transmitters#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/wolles-elektronikkiste.de\/en"},{"@type":"ListItem","position":2,"name":"Radio sockets and hand transmitters"}]},{"@type":"WebSite","@id":"https:\/\/wolles-elektronikkiste.de\/en#website","url":"https:\/\/wolles-elektronikkiste.de\/en","name":"Wolles Elektronikkiste","description":"Die wunderbare Welt der Elektronik","publisher":{"@id":"https:\/\/wolles-elektronikkiste.de\/en#\/schema\/person\/b774e4d64b4766889a2f7c6e5ec85b46"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wolles-elektronikkiste.de\/en?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/wolles-elektronikkiste.de\/en#\/schema\/person\/b774e4d64b4766889a2f7c6e5ec85b46","name":"Wolfgang Ewald","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/cropped-Logo-1.png","url":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/cropped-Logo-1.png","contentUrl":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/cropped-Logo-1.png","width":512,"height":512,"caption":"Wolfgang Ewald"},"logo":{"@id":"https:\/\/wolles-elektronikkiste.de\/wp-content\/uploads\/2019\/03\/cropped-Logo-1.png"}}]}},"_links":{"self":[{"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/posts\/8804","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/comments?post=8804"}],"version-history":[{"count":0,"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/posts\/8804\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/media\/7856"}],"wp:attachment":[{"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/media?parent=8804"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/categories?post=8804"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wolles-elektronikkiste.de\/en\/wp-json\/wp\/v2\/tags?post=8804"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}