{"id":1705,"date":"2020-09-10T15:13:49","date_gmt":"2020-09-10T13:13:49","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=1705"},"modified":"2021-10-20T16:30:47","modified_gmt":"2021-10-20T14:30:47","slug":"binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/","title":{"rendered":"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE"},"content":{"rendered":"<p>After my <a href=\"https:\/\/www.pschatzmann.ch\/home\/2020\/08\/26\/the-spektrum-satellite-disaster\/\">bad experience with this topc<\/a> I decided to give it another try.<\/p>\n<p>I assumed that my issue from last time was that the receiver did not get <strong>enough power<\/strong> (after all it was a bad idea to power the satellite from a GPIO pin directly) so I decided to fix this: I just had a <a href=\"https:\/\/www.pschatzmann.ch\/home\/2020\/08\/25\/taming-the-hw-627-motor-controller\/\">DRV8833 motor controller<\/a> at hand, so I used this to manage the power line for the Satellite Receiver.<\/p>\n<p>I was using a ESP32 instead of an Arduino because<\/p>\n<ul>\n<li>it uses a <strong>3.3V logic<\/strong> and therefore is compatible with the Satellite Receiver Signal Pin<\/li>\n<li>it provides a <strong>3.3V power<\/strong> line.<\/li>\n<li>it can remap the RX pin and use it as output pin. This is handy because we can check if the binding was successful. <\/li>\n<li>it supports 2 Serial interfaces: We can use Serial2 for the communication to the Satellite and still have Serial for logging. <\/li>\n<li>has a built in LED that we can use to signal the state<\/li>\n<\/ul>\n<p>I am using the following wiring:<\/p>\n<table>\n<thead>\n<tr>\n<th>ESP32<\/th>\n<th>DRV8833<\/th>\n<th>Satellite<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>3V<\/td>\n<td>VCC<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>3V<\/td>\n<td>In1<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>GND<\/td>\n<td>GND<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>GND<\/td>\n<td>In2<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td>16 (RX2)<\/td>\n<td><\/td>\n<td>Signal<\/td>\n<\/tr>\n<tr>\n<td>23<\/td>\n<td>EEP<\/td>\n<td><\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>Out1<\/td>\n<td>+<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>Out2<\/td>\n<td>&#8211;<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>We use the <strong>GPIO 16 pin<\/strong> to receive (and send signals) and <strong>GPIO 23<\/strong> to switch the power on via the enable pin of the motor driver. <strong>Before connecting this setup to the Satellite you need to double check the polarity of Out1 and Out2<\/strong>! I used my Voltmeter and was getting 3.22V which should be sufficient and confirmed that Out1 was +.<\/p>\n<p>And finally I am using the following Sketch which is based on my <a href=\"https:\/\/github.com\/pschatzmann\/SpektrumSatellite\">Spektrum Satellite Library<\/a>:<\/p>\n<pre><code>#include \"SpektrumSatellite.h\"\n#include \"SpektrumCSV.h\"\n\n#define ONBOARD_LED  2\n\nSpektrumSatellite&lt;uint16_t&gt; satellite(Serial2); \nSpektrumCSV&lt;uint16_t&gt; csv;\nint rxPin = 16; \nint powerPin = 23; \n\n\/\/ blinking the LED\nbool led_state = true;\nint led_interval;\nlong led_timeout;\n\n\/\/ print buffer for csv\nuint8_t buffer[1024];\n\n\nvoid setup() {\n  \/\/ Setup logging\n  Serial.begin(115200);\n  Serial.println();\n  Serial.println(\"setup\");\n  satellite.setLog(Serial);\n\n  pinMode(ONBOARD_LED,OUTPUT);\n  digitalWrite(ONBOARD_LED, HIGH);\n\n  \/\/ we set the receiver into binding mode\n  satellite.setBindingMode(External_DSM2_11ms);\n  satellite.startBinding(powerPin, rxPin);\n\n  \/\/ start blinking\n  led_interval = 1000;\n\n  \/\/ switch rxPin to receive data on Serial \n  Serial2.begin(SPEKTRUM_SATELLITE_BPS);\n\n}\n\nvoid loop() {\n  \/\/ when we receive data we \n  if (satellite.getFrame()) {  \n     led_interval = 0;\n     led_state = false;\n     \/\/ write data to log\n     csv.toString(satellite, buffer, 1024);\n     Serial.print((char*)buffer);     \n  }\n\n  \/\/ update led\n  if (millis()&gt;led_timeout){\n     if (led_interval&gt;0)\n         led_state = !led_state;\n     led_timeout = millis()+led_interval;\n     digitalWrite(ONBOARD_LED, led_state);\n  }\n}\n\n<\/code><\/pre>\n<p>In the setup we switch the LED on and set the Satellite into binding mode and then start blinking. In the loop we just switch led  off when we receive any data and update the led status.<\/p>\n<h2>Binding Instructions<\/h2>\n<ul>\n<li>Set up the connections and load the bind sketch to the microcontroller<\/li>\n<li>After powering on the ESP32 the LED on the microcontroller starts to light up.<\/li>\n<li>After a couple of seconds the ESP32 LED starts to blink and the Satellite receiver starts to blink as well. <\/li>\n<li>power on the Spektrum Radio with the bind switch activated<\/li>\n<li>Release the bind switch <\/li>\n<li>After some seconds the LED on the ESP32 will go off and the one on the Receiver go to stable<\/li>\n<li>In the log you see the received channel data as CSV<\/li>\n<\/ul>\n<h2>Using other Microcontrollers<\/h2>\n<p>You can exchange the ESP32 with a ESP8266 w\/o loosing any functionality. You can also use an Arduino, but then you will need to use a Logic Converter on the rxPin (or a voltage divider) and comment out the receiving part; but if you do this an Attiny might be an even better choice.<br \/>\nI started my Spektrum Radio with the Bind switch activated. Then I released it and moved the controls: The led on the ESP32 went off and the one on the Satellite switched to a stable light. So every<\/p>\n<h2>Conclusion<\/h2>\n<p>I agree that this is a little bit too complicated and it is much simpler to buy a <a href=\"https:\/\/www.banggood.com\/de\/Upgraded-R720X-2_4G-20CH-DSM2-DSMX-Compatible-Micro-Receiver-With-Binding-Button-For-Radio-Transmitter-p-1150684.html?akmClientCountry=CH&amp;rmmds=cart_middle_products&amp;ID=3422&amp;cur_warehouse=CN\">Satellite Receiver with built in bind switch<\/a> or a separate <a href=\"https:\/\/www.banggood.com\/de\/IRangeX-BM01-Simple-Tiny-Bind-Module-for-Spektrum-DSM2-DSMX-Satellite-Receiver-p-1192156.html?rmmds=myorder\">Bind Module<\/a>. On the other hand, if you just use one motor on your RC Plane, you have one spare motor output on your motor controller board that you can put to good use.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>After my bad experience with this topc I decided to give it another try. I assumed that my issue from last time was that the receiver did not get enough power (after all it was a bad idea to power the satellite from a GPIO pin directly) so I decided [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1709,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_crdt_document":"","_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"categories":[20,10,23],"tags":[],"class_list":["post-1705","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-projects","category-rc"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE - Phil Schatzmann<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"After my bad experience with this topc I decided to give it another try. I assumed that my issue from last time was that the receiver did not get enough power (after all it was a bad idea to power the satellite from a GPIO pin directly) so I decided [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-10T13:13:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-20T14:30:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/09\/satellite.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"225\" \/>\n\t<meta property=\"og:image:height\" content=\"225\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"pschatzmann\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pschatzmann\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE\",\"datePublished\":\"2020-09-10T13:13:49+00:00\",\"dateModified\":\"2021-10-20T14:30:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/\"},\"wordCount\":563,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/satellite.jpeg\",\"articleSection\":[\"Arduino\",\"Projects\",\"RC\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/\",\"name\":\"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/satellite.jpeg\",\"datePublished\":\"2020-09-10T13:13:49+00:00\",\"dateModified\":\"2021-10-20T14:30:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/satellite.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/satellite.jpeg\",\"width\":225,\"height\":225},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2020\\\/09\\\/10\\\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\",\"name\":\"Phil Schatzmann Consulting\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\",\"name\":\"pschatzmann\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\",\"width\":305,\"height\":305,\"caption\":\"pschatzmann\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/pschatzmann.png\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE - Phil Schatzmann","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:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/","og_locale":"en_US","og_type":"article","og_title":"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE - Phil Schatzmann","og_description":"After my bad experience with this topc I decided to give it another try. I assumed that my issue from last time was that the receiver did not get enough power (after all it was a bad idea to power the satellite from a GPIO pin directly) so I decided [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/","og_site_name":"Phil Schatzmann","article_published_time":"2020-09-10T13:13:49+00:00","article_modified_time":"2021-10-20T14:30:47+00:00","og_image":[{"width":225,"height":225,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/09\/satellite.jpeg","type":"image\/jpeg"}],"author":"pschatzmann","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pschatzmann","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE","datePublished":"2020-09-10T13:13:49+00:00","dateModified":"2021-10-20T14:30:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/"},"wordCount":563,"commentCount":0,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/09\/satellite.jpeg","articleSection":["Arduino","Projects","RC"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/","url":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/","name":"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/09\/satellite.jpeg","datePublished":"2020-09-10T13:13:49+00:00","dateModified":"2021-10-20T14:30:47+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/09\/satellite.jpeg","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2020\/09\/satellite.jpeg","width":225,"height":225},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2020\/09\/10\/binding-a-spektrum-satellite-receiver-with-a-esp32-using-arduino-ide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"Binding a Spektrum Satellite Receiver with a ESP32 using the Arduino IDE"}]},{"@type":"WebSite","@id":"https:\/\/www.pschatzmann.ch\/home\/#website","url":"https:\/\/www.pschatzmann.ch\/home\/","name":"Phil Schatzmann Consulting","description":"","publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.pschatzmann.ch\/home\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1","name":"pschatzmann","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png","width":305,"height":305,"caption":"pschatzmann"},"logo":{"@id":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2022\/08\/pschatzmann.png"}}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/1705","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/comments?post=1705"}],"version-history":[{"count":30,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/1705\/revisions"}],"predecessor-version":[{"id":3664,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/1705\/revisions\/3664"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/1709"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=1705"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=1705"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=1705"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}