{"id":855741,"date":"2025-11-21T06:21:28","date_gmt":"2025-11-21T06:21:28","guid":{"rendered":"https:\/\/elektrobox.ch\/?page_id=855741"},"modified":"2026-06-02T19:26:12","modified_gmt":"2026-06-02T19:26:12","slug":"signals-and-communication","status":"publish","type":"page","link":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/","title":{"rendered":"Signals and Communication"},"content":{"rendered":"\n<div class=\"ebox-learn-page ebox-learn-page--signals\">\n\n  <section class=\"ebox-learn-hero\">\n    <div class=\"ebox-learn-hero-grid\">\n      <div class=\"ebox-learn-hero-text\">\n        <span class=\"ebox-learn-label\">Learn Electronics<\/span>\n        <h1>Signals and Communication<\/h1>\n        <p>Learn how electronic systems exchange information through digital signals, timing, logic levels, UART, I2C, SPI, and common debugging techniques.<\/p>\n      <\/div>\n\n\n  <figure class=\"ebox-learn-hero-image\">\n    <img src=\"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/Signal.png\" alt=\"Signals and communication between electronic modules\" loading=\"lazy\" decoding=\"async\">\n    <figcaption>Signals and Communication<\/figcaption>\n  <\/figure>\n<\/div>\n\n\n  <\/section>\n\n  <section>\n    <h2>1. What you will learn<\/h2>\n    <div class=\"ebox-learn-summary-grid\">\n      <div class=\"ebox-learn-info-card\"><strong>Logic levels<\/strong>Make sure devices use compatible voltage levels.<\/div>\n      <div class=\"ebox-learn-info-card\"><strong>UART<\/strong>Simple asynchronous serial communication.<\/div>\n      <div class=\"ebox-learn-info-card\"><strong>I2C<\/strong>Two-wire bus for sensors and small modules.<\/div>\n      <div class=\"ebox-learn-info-card\"><strong>SPI<\/strong>Fast bus for displays, memory, and high-speed peripherals.<\/div>\n    <\/div>\n  <\/section>\n\n  <section>\n    <h2>2. Communication checks<\/h2>\n    <div class=\"ebox-learn-formula-grid\">\n      <div class=\"ebox-learn-formula\"><strong>UART<\/strong>TX \u2194 RX, matching baud<\/div>\n      <div class=\"ebox-learn-formula\"><strong>I2C<\/strong>SDA + SCL + pull-ups<\/div>\n      <div class=\"ebox-learn-formula\"><strong>SPI<\/strong>CLK + MOSI + MISO + CS<\/div>\n      <div class=\"ebox-learn-formula\"><strong>Ground<\/strong>common reference required<\/div>\n    <\/div>\n  <\/section>\n\n  <section>\n    <h2>3. Learning modules<\/h2>\n    <p>\n      Work through these modules in order. Each module explains one common communication concept and shows how to check it in real electronics projects.\n    <\/p>\n\n\n<div class=\"ebox-learn-accordion-list\">\n\n  <details class=\"ebox-learn-accordion\" open=\"\">\n    <summary>\n      <span class=\"ebox-learn-step-number\">1<\/span>\n      <span class=\"ebox-learn-summary-title\">\n        <strong>Signal levels<\/strong>\n        <span>Check 3.3 V vs 5 V compatibility before connecting devices.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        Digital communication only works reliably when both devices understand the same voltage levels. A HIGH signal from one device must be recognized as HIGH by the other device, and the voltage must stay within the safe input range.\n      <\/p>\n      <p>\n        Many modern microcontrollers, such as the ESP32, use 3.3 V logic. Some older modules or Arduino-style boards use 5 V logic. Connecting a 5 V output directly to a 3.3 V input can damage the microcontroller pin.\n      <\/p>\n      <ul>\n        <li><strong>Check the logic voltage:<\/strong> Confirm whether each device uses 3.3 V or 5 V signals.<\/li>\n        <li><strong>Use level shifting when needed:<\/strong> A logic level shifter can safely connect different voltage systems.<\/li>\n        <li><strong>Share ground:<\/strong> Communication signals need a common ground reference.<\/li>\n        <li><strong>Do not confuse power and signal voltage:<\/strong> A module powered by 5 V may still use 3.3 V logic, or the opposite.<\/li>\n      <\/ul>\n      <p>\n        Practical example: If a 5 V sensor sends a digital output to an ESP32 input, check the sensor output voltage first. If it outputs 5 V, use a level shifter or a suitable voltage divider before connecting it to the ESP32.\n      <\/p>\n    <\/div>\n  <\/details>\n\n  <details class=\"ebox-learn-accordion\">\n    <summary>\n      <span class=\"ebox-learn-step-number\">2<\/span>\n      <span class=\"ebox-learn-summary-title\">\n        <strong>UART serial<\/strong>\n        <span>Understand baud rate, TX\/RX crossing, and serial monitor debugging.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        UART is a simple serial communication method that uses separate transmit and receive lines. One device sends data from TX, and the other device receives it on RX. This is commonly used for debug messages, GPS modules, Bluetooth modules, USB serial adapters, and communication between microcontrollers.\n      <\/p>\n      <p>\n        UART does not use a clock line. Both devices must use the same baud rate, such as 9600, 115200, or another configured speed. If the baud rate is wrong, the received text will usually appear as unreadable characters.\n      <\/p>\n      <ul>\n        <li><strong>Cross TX and RX:<\/strong> TX from one device usually connects to RX on the other device.<\/li>\n        <li><strong>Match the baud rate:<\/strong> The sender, receiver, and serial monitor must use the same speed.<\/li>\n        <li><strong>Connect ground:<\/strong> A missing common ground can make communication unstable or completely fail.<\/li>\n        <li><strong>Check voltage level:<\/strong> USB serial adapters can be 3.3 V or 5 V logic.<\/li>\n      <\/ul>\n      <p>\n        Practical example: In a PC status monitor project, the PC can send live system data over USB serial to an ESP32. If the ESP32 receives unreadable text, first check baud rate, port selection, and the expected message format.\n      <\/p>\n    <\/div>\n  <\/details>\n\n  <details class=\"ebox-learn-accordion\">\n    <summary>\n      <span class=\"ebox-learn-step-number\">3<\/span>\n      <span class=\"ebox-learn-summary-title\">\n        <strong>I2C bus<\/strong>\n        <span>Use addresses, pull-up resistors, bus scans, and short wiring where possible.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        I2C is a two-wire bus that uses SDA for data and SCL for clock. It is often used for sensors, small displays, real-time clocks, I\/O expanders, and other low-speed modules. Multiple devices can share the same SDA and SCL lines if every device has a unique address.\n      <\/p>\n      <p>\n        I2C lines need pull-up resistors. Some modules already include them, but not all do. If the pull-ups are missing, too weak, or connected to the wrong voltage, the bus may not work correctly.\n      <\/p>\n      <ul>\n        <li><strong>Run an I2C scanner:<\/strong> This confirms whether the device responds and shows its address.<\/li>\n        <li><strong>Check SDA and SCL:<\/strong> Swapping the two lines is a common wiring mistake.<\/li>\n        <li><strong>Use pull-ups:<\/strong> Typical values are often around 4.7 k\u03a9 to 10 k\u03a9, depending on the bus and wiring.<\/li>\n        <li><strong>Keep wiring short:<\/strong> Long jumper wires can make I2C unreliable.<\/li>\n        <li><strong>Watch address conflicts:<\/strong> Two devices with the same fixed address cannot normally share the same bus.<\/li>\n      <\/ul>\n      <p>\n        Practical example: A BH1750 light sensor can be connected over I2C. If the sensor is not detected, check power, ground, SDA, SCL, pull-ups, and whether the scanner finds the expected address.\n      <\/p>\n    <\/div>\n  <\/details>\n\n  <details class=\"ebox-learn-accordion\">\n    <summary>\n      <span class=\"ebox-learn-step-number\">4<\/span>\n      <span class=\"ebox-learn-summary-title\">\n        <strong>SPI bus<\/strong>\n        <span>Use chip select, clock, and data lines for fast peripherals.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        SPI is a fast communication bus often used for TFT displays, LED drivers, memory chips, SD cards, and high-speed sensors. It typically uses a clock line, a data line from controller to device, a data line from device to controller, and one chip-select line per device.\n      <\/p>\n      <p>\n        Unlike I2C, SPI does not use addresses. Instead, the controller selects one device at a time using its chip-select pin. If the wrong chip-select pin is configured, the device may stay silent even when all other wires are correct.\n      <\/p>\n      <ul>\n        <li><strong>Check pin names:<\/strong> MOSI, MISO, SCK, and CS may be named differently on different boards.<\/li>\n        <li><strong>Use the correct CS pin:<\/strong> Each SPI device usually needs its own chip-select line.<\/li>\n        <li><strong>Check SPI mode and speed:<\/strong> Some devices require specific clock polarity, phase, or maximum frequency.<\/li>\n        <li><strong>Keep wires short:<\/strong> High-speed SPI is sensitive to long jumper wires and poor grounding.<\/li>\n        <li><strong>Confirm display configuration:<\/strong> TFT displays often also need DC, RESET, and backlight pins.<\/li>\n      <\/ul>\n      <p>\n        Practical example: If a TFT display stays white or black, check the SPI pin mapping, chip-select pin, display driver type, reset pin, and whether the selected library matches the display controller.\n      <\/p>\n    <\/div>\n  <\/details>\n\n  <details class=\"ebox-learn-accordion\">\n    <summary>\n      <span class=\"ebox-learn-step-number\">5<\/span>\n      <span class=\"ebox-learn-summary-title\">\n        <strong>Signal debugging<\/strong>\n        <span>Use a scope or logic analyzer when communication does not work.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        Communication problems are easiest to solve when you check them step by step. Do not start by changing code randomly. First prove that power, ground, wiring, voltage level, and pin configuration are correct.\n      <\/p>\n      <p>\n        A multimeter can confirm static voltages and continuity, but it cannot show fast data signals properly. For UART, I2C, SPI, PWM, and clock lines, an oscilloscope or logic analyzer is much more useful.\n      <\/p>\n      <ul>\n        <li><strong>Start with power:<\/strong> Confirm the module receives the correct supply voltage.<\/li>\n        <li><strong>Check ground:<\/strong> A missing shared ground is a common cause of failed communication.<\/li>\n        <li><strong>Verify wiring:<\/strong> Use continuity mode from controller pin to module pin.<\/li>\n        <li><strong>Look for activity:<\/strong> A scope or logic analyzer can show whether data is actually present.<\/li>\n        <li><strong>Use known-good examples:<\/strong> Test the module with a simple library example before integrating it into a large project.<\/li>\n      <\/ul>\n      <p>\n        Practical example: If an I2C sensor does not respond, first run an I2C scanner. If no address appears, measure the power pins, check SDA\/SCL continuity, inspect pull-ups, and then look at the bus with a logic analyzer if needed.\n      <\/p>\n    <\/div>\n  <\/details>\n\n<\/div>\n\n\n  <\/section>\n\n  <section>\n    <h2>4. Project connections<\/h2>\n    <p>\n      These examples show where the topic appears in practical ElektroBox builds.\n    <\/p>\n\n\n<div class=\"ebox-learn-project-grid\">\n  <div class=\"ebox-learn-project-card\"><strong>PC Status Monitor<\/strong>Send live data from a PC to an ESP32 over USB serial.<\/div>\n  <div class=\"ebox-learn-project-card\"><strong>ElektroClock light sensor<\/strong>Read a BH1750 sensor over I2C.<\/div>\n  <div class=\"ebox-learn-project-card\"><strong>TFT display project<\/strong>Connect a display over SPI and verify the pin configuration.<\/div>\n<\/div>\n\n\n  <\/section>\n\n  <section>\n    <h2>5. Common mistakes<\/h2>\n\n\n<div class=\"ebox-learn-details-list\">\n  <details>\n    <summary>Skipping basic checks<\/summary>\n    <div class=\"ebox-learn-details-content\">\n      <p>Always verify power, ground, polarity, pin assignment, and the simplest possible test case first.<\/p>\n    <\/div>\n  <\/details>\n\n  <details>\n    <summary>Changing too many things at once<\/summary>\n    <div class=\"ebox-learn-details-content\">\n      <p>Change one variable, test again, and document the result. This keeps debugging controlled.<\/p>\n    <\/div>\n  <\/details>\n\n  <details>\n    <summary>Ignoring component limits<\/summary>\n    <div class=\"ebox-learn-details-content\">\n      <p>Check voltage, current, heat, pin limits, and power ratings before assuming a circuit is safe.<\/p>\n    <\/div>\n  <\/details>\n<\/div>\n\n\n  <\/section>\n\n  <section class=\"ebox-learn-final-box\">\n    <h2>Final takeaway<\/h2>\n    <p>Communication problems usually come from wrong wiring, wrong voltage level, missing ground, wrong address, or mismatched timing.<\/p>\n  <\/section>\n\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Learn Electronics Signals and Communication Learn how electronic systems exchange information through digital signals, timing, logic levels, UART, I2C, SPI, and common debugging techniques. Signals and Communication 1. What you will learn Logic levelsMake sure devices use compatible voltage levels. UARTSimple asynchronous serial communication. I2CTwo-wire bus for sensors and small modules. SPIFast bus for displays, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-855741","page","type-page","status-publish","hentry"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":7}},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Signals and Communication - ElektroBox<\/title>\n<meta name=\"description\" content=\"Learn electronics signals and communication basics, including logic levels, UART, I2C, SPI, pull-ups, timing, and signal debugging.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Signals and Communication - ElektroBox\" \/>\n<meta property=\"og:description\" content=\"Learn electronics signals and communication basics, including logic levels, UART, I2C, SPI, pull-ups, timing, and signal debugging.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/\" \/>\n<meta property=\"og:site_name\" content=\"ElektroBox\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-02T19:26:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/Signal.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/\",\"url\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/\",\"name\":\"Signals and Communication - ElektroBox\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Signal.png\",\"datePublished\":\"2025-11-21T06:21:28+00:00\",\"dateModified\":\"2026-06-02T19:26:12+00:00\",\"description\":\"Learn electronics signals and communication basics, including logic levels, UART, I2C, SPI, pull-ups, timing, and signal debugging.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/#primaryimage\",\"url\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Signal.png\",\"contentUrl\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Signal.png\",\"width\":310,\"height\":178},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/signals-and-communication\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/elektrobox.ch\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Signals and Communication\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/#website\",\"url\":\"https:\\\/\\\/elektrobox.ch\\\/\",\"name\":\"ElektroBox\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/#\\\/schema\\\/person\\\/878bd55e17d9d0b1a53523fa5e90f6b2\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/elektrobox.ch\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/#\\\/schema\\\/person\\\/878bd55e17d9d0b1a53523fa5e90f6b2\",\"name\":\"Jacob Jarosz\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Logo_Color-Kopie-scaled.png\",\"url\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Logo_Color-Kopie-scaled.png\",\"contentUrl\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Logo_Color-Kopie-scaled.png\",\"width\":2560,\"height\":2560,\"caption\":\"Jacob Jarosz\"},\"logo\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/Logo_Color-Kopie-scaled.png\"},\"sameAs\":[\"http:\\\/\\\/elektrobox.ch\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Signals and Communication - ElektroBox","description":"Learn electronics signals and communication basics, including logic levels, UART, I2C, SPI, pull-ups, timing, and signal debugging.","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:\/\/elektrobox.ch\/index.php\/signals-and-communication\/","og_locale":"en_US","og_type":"article","og_title":"Signals and Communication - ElektroBox","og_description":"Learn electronics signals and communication basics, including logic levels, UART, I2C, SPI, pull-ups, timing, and signal debugging.","og_url":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/","og_site_name":"ElektroBox","article_modified_time":"2026-06-02T19:26:12+00:00","og_image":[{"url":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/Signal.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/","url":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/","name":"Signals and Communication - ElektroBox","isPartOf":{"@id":"https:\/\/elektrobox.ch\/#website"},"primaryImageOfPage":{"@id":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/#primaryimage"},"image":{"@id":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/#primaryimage"},"thumbnailUrl":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/Signal.png","datePublished":"2025-11-21T06:21:28+00:00","dateModified":"2026-06-02T19:26:12+00:00","description":"Learn electronics signals and communication basics, including logic levels, UART, I2C, SPI, pull-ups, timing, and signal debugging.","breadcrumb":{"@id":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/#primaryimage","url":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/Signal.png","contentUrl":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/Signal.png","width":310,"height":178},{"@type":"BreadcrumbList","@id":"https:\/\/elektrobox.ch\/index.php\/signals-and-communication\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elektrobox.ch\/"},{"@type":"ListItem","position":2,"name":"Signals and Communication"}]},{"@type":"WebSite","@id":"https:\/\/elektrobox.ch\/#website","url":"https:\/\/elektrobox.ch\/","name":"ElektroBox","description":"","publisher":{"@id":"https:\/\/elektrobox.ch\/#\/schema\/person\/878bd55e17d9d0b1a53523fa5e90f6b2"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elektrobox.ch\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/elektrobox.ch\/#\/schema\/person\/878bd55e17d9d0b1a53523fa5e90f6b2","name":"Jacob Jarosz","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/05\/Logo_Color-Kopie-scaled.png","url":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/05\/Logo_Color-Kopie-scaled.png","contentUrl":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/05\/Logo_Color-Kopie-scaled.png","width":2560,"height":2560,"caption":"Jacob Jarosz"},"logo":{"@id":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/05\/Logo_Color-Kopie-scaled.png"},"sameAs":["http:\/\/elektrobox.ch"]}]}},"_links":{"self":[{"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/pages\/855741","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/comments?post=855741"}],"version-history":[{"count":7,"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/pages\/855741\/revisions"}],"predecessor-version":[{"id":856415,"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/pages\/855741\/revisions\/856415"}],"wp:attachment":[{"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/media?parent=855741"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}