{"id":855739,"date":"2025-11-21T06:20:32","date_gmt":"2025-11-21T06:20:32","guid":{"rendered":"https:\/\/elektrobox.ch\/?page_id=855739"},"modified":"2026-06-02T19:23:34","modified_gmt":"2026-06-02T19:23:34","slug":"digital-and-embedded-systems","status":"publish","type":"page","link":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/","title":{"rendered":"Digital And Embedded Systems"},"content":{"rendered":"\n<div class=\"ebox-learn-page ebox-learn-page--digital\">\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>Digital &amp; Embedded Systems<\/h1>\n        <p>Learn how digital logic, microcontrollers, sensors, displays, and embedded code work together in practical electronics projects.<\/p>\n      <\/div>\n\n\n  <figure class=\"ebox-learn-hero-image\">\n    <img src=\"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/digital.png\" alt=\"Digital and embedded systems with microcontroller and electronics signals\" loading=\"lazy\" decoding=\"async\">\n    <figcaption>Digital &amp; Embedded Systems<\/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>GPIO<\/strong>Read buttons and control LEDs, drivers, and digital modules.<\/div>\n      <div class=\"ebox-learn-info-card\"><strong>PWM<\/strong>Control brightness, motors, and power output with duty cycle.<\/div>\n      <div class=\"ebox-learn-info-card\"><strong>ADC<\/strong>Read analog sensor voltages as digital values.<\/div>\n      <div class=\"ebox-learn-info-card\"><strong>Firmware structure<\/strong>Use readable code, timing, and state machines.<\/div>\n    <\/div>\n  <\/section>\n\n  <section>\n    <h2>2. Embedded references<\/h2>\n    <div class=\"ebox-learn-formula-grid\">\n      <div class=\"ebox-learn-formula\"><strong>PWM duty<\/strong>on-time \/ period<\/div>\n      <div class=\"ebox-learn-formula\"><strong>ADC step<\/strong>Vref \/ 2^bits<\/div>\n      <div class=\"ebox-learn-formula\"><strong>Button<\/strong>debounce required<\/div>\n      <div class=\"ebox-learn-formula\"><strong>Timing<\/strong>prefer millis over blocking delay<\/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 practical embedded-systems concept and shows how it is used in real microcontroller projects.\n    <\/p>\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>Digital inputs<\/strong>\n        <span>Read buttons, switches, sensors, and logic signals reliably.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        A digital input reads whether a signal is LOW or HIGH. This is used for buttons, switches, limit sensors, motion sensors, encoder signals, and logic outputs from other modules. The important part is that the input must always have a defined state.\n      <\/p>\n      <p>\n        A floating input is not connected clearly to HIGH or LOW, so it can randomly change state because of electrical noise. To avoid this, use a pull-up or pull-down resistor. Many microcontrollers also have internal pull-up resistors that can be enabled in software.\n      <\/p>\n      <ul>\n        <li><strong>Use pull resistors:<\/strong> A pull-up or pull-down keeps the input stable when the button or switch is open.<\/li>\n        <li><strong>Check voltage levels:<\/strong> A 5 V signal may damage a 3.3 V microcontroller input.<\/li>\n        <li><strong>Debounce buttons:<\/strong> Mechanical contacts bounce and can create multiple false presses.<\/li>\n        <li><strong>Test with a multimeter:<\/strong> Confirm that the pin really changes between LOW and HIGH.<\/li>\n      <\/ul>\n      <p>\n        Practical example: A push button can connect an input pin to ground, while an internal pull-up keeps the pin HIGH when the button is not pressed. In software, the pressed state is then detected as LOW.\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>Digital outputs<\/strong>\n        <span>Drive indicators and output stages without exceeding pin limits.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        A digital output switches a pin between LOW and HIGH. This can control LEDs, enable pins, driver circuits, transistor stages, relays, buzzers, displays, or communication lines. However, a GPIO pin can only provide limited current.\n      <\/p>\n      <p>\n        Never assume that a microcontroller pin can power a load directly. Small indicator LEDs are usually possible with a series resistor, but motors, LED strips, relays, and high-power modules need a transistor, MOSFET, relay driver, or dedicated driver IC.\n      <\/p>\n      <ul>\n        <li><strong>Use a series resistor for LEDs:<\/strong> This limits current and protects both the LED and the pin.<\/li>\n        <li><strong>Respect pin current limits:<\/strong> Check the microcontroller datasheet or board documentation.<\/li>\n        <li><strong>Use drivers for loads:<\/strong> Motors, solenoids, relays, and LED strips should not be powered directly from GPIO.<\/li>\n        <li><strong>Use common ground:<\/strong> The controller and external driver circuit usually need the same ground reference.<\/li>\n      <\/ul>\n      <p>\n        Practical example: An ESP32 pin can control the gate of a logic-level MOSFET. The MOSFET then switches a higher-current LED strip while the ESP32 only provides the control signal.\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>PWM control<\/strong>\n        <span>Generate adjustable output power, brightness, speed, or signal intensity.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        PWM means pulse-width modulation. Instead of outputting a true analog voltage, the microcontroller switches a digital output on and off very quickly. The duty cycle defines how long the signal stays on during each period.\n      <\/p>\n      <p>\n        PWM is useful for LED brightness, motor speed, fan control, heaters, buzzers, servo-style control signals, and power stages. A higher duty cycle usually means more average power delivered to the load.\n      <\/p>\n      <ul>\n        <li><strong>Duty cycle:<\/strong> 0% is always off, 100% is always on, and 50% is on for half of each cycle.<\/li>\n        <li><strong>Frequency matters:<\/strong> Too low can cause visible LED flicker or audible motor noise.<\/li>\n        <li><strong>Use drivers:<\/strong> PWM pins should control MOSFETs or drivers for high-current loads.<\/li>\n        <li><strong>Measure with an oscilloscope:<\/strong> A multimeter may only show an average value and hide the real waveform.<\/li>\n      <\/ul>\n      <p>\n        Practical example: In an RGB LED controller, three PWM outputs can control red, green, and blue channels. By changing the duty cycle of each channel, many different colors can be mixed.\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>Analog input<\/strong>\n        <span>Understand ADC range, resolution, noise, reference voltage, and scaling.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        An ADC converts an analog voltage into a digital number. This allows a microcontroller to read sensors such as potentiometers, light sensors, thermistors, battery voltage dividers, pressure sensors, or other analog outputs.\n      <\/p>\n      <p>\n        The ADC can only read voltages within its allowed range. If the voltage is too high, the reading will be wrong and the pin may be damaged. If the signal is too noisy, the value will jump around and may need filtering or averaging.\n      <\/p>\n      <ul>\n        <li><strong>Stay inside the ADC range:<\/strong> Do not exceed the allowed input voltage of the microcontroller.<\/li>\n        <li><strong>Use voltage dividers:<\/strong> Scale higher voltages down before measuring them.<\/li>\n        <li><strong>Filter noisy signals:<\/strong> Use software averaging or an RC filter for unstable analog readings.<\/li>\n        <li><strong>Calibrate the value:<\/strong> Convert raw ADC numbers into useful units such as volts, percent, degrees, or brightness.<\/li>\n      <\/ul>\n      <p>\n        Practical example: To measure a battery with a microcontroller, use a voltage divider to reduce the battery voltage to a safe ADC range, then convert the ADC value back into the real battery voltage in software.\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>State machines<\/strong>\n        <span>Organize firmware into stable modes instead of tangled logic.<\/span>\n      <\/span>\n    <\/summary>\n    <div class=\"ebox-learn-accordion-content\">\n      <p>\n        A state machine organizes firmware into clear operating modes. Instead of writing one long loop with many nested conditions, the project moves between defined states such as idle, setup, running, paused, error, and finished.\n      <\/p>\n      <p>\n        State machines make embedded code easier to debug and expand. Each state has a clear job, and transitions happen only when a defined condition is met. This is especially useful for projects with buttons, displays, timing, menus, sensors, or multiple operating modes.\n      <\/p>\n      <ul>\n        <li><strong>Define states clearly:<\/strong> Give every mode a simple name and purpose.<\/li>\n        <li><strong>Control transitions:<\/strong> Move to another state only after a button press, timeout, sensor event, or error condition.<\/li>\n        <li><strong>Avoid blocking delays:<\/strong> Use non-blocking timing so the firmware can still react to inputs.<\/li>\n        <li><strong>Keep actions separated:<\/strong> Read inputs, update logic, and update outputs in a controlled structure.<\/li>\n      <\/ul>\n      <p>\n        Practical example: A time tracking monitor can use states for idle, setup, countdown, warning, and finished. This makes the behavior predictable and prevents button handling from interfering with the timer logic.\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>Time Tracking Monitor<\/strong>Use a state machine for idle, setup, tracking, and finished states.<\/div>\n  <div class=\"ebox-learn-project-card\"><strong>RGB LED Controller<\/strong>Generate PWM outputs for color channels.<\/div>\n  <div class=\"ebox-learn-project-card\"><strong>Sensor display<\/strong>Read a sensor and update a display without blocking the loop.<\/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>Embedded systems combine hardware limits and software timing. A clean firmware structure makes projects easier to expand and debug.<\/p>\n  <\/section>\n\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Learn Electronics Digital &amp; Embedded Systems Learn how digital logic, microcontrollers, sensors, displays, and embedded code work together in practical electronics projects. Digital &amp; Embedded Systems 1. What you will learn GPIORead buttons and control LEDs, drivers, and digital modules. PWMControl brightness, motors, and power output with duty cycle. ADCRead analog sensor voltages as digital [&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-855739","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>Digital And Embedded Systems - ElektroBox<\/title>\n<meta name=\"description\" content=\"Learn digital and embedded systems basics, including GPIO, PWM, ADC, microcontrollers, sensors, timing, and firmware structure.\" \/>\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\/digital-and-embedded-systems\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Digital And Embedded Systems - ElektroBox\" \/>\n<meta property=\"og:description\" content=\"Learn digital and embedded systems basics, including GPIO, PWM, ADC, microcontrollers, sensors, timing, and firmware structure.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/\" \/>\n<meta property=\"og:site_name\" content=\"ElektroBox\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-02T19:23:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/digital.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\\\/digital-and-embedded-systems\\\/\",\"url\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/digital-and-embedded-systems\\\/\",\"name\":\"Digital And Embedded Systems - ElektroBox\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/digital-and-embedded-systems\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/digital-and-embedded-systems\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/digital.png\",\"datePublished\":\"2025-11-21T06:20:32+00:00\",\"dateModified\":\"2026-06-02T19:23:34+00:00\",\"description\":\"Learn digital and embedded systems basics, including GPIO, PWM, ADC, microcontrollers, sensors, timing, and firmware structure.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/digital-and-embedded-systems\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/digital-and-embedded-systems\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/digital-and-embedded-systems\\\/#primaryimage\",\"url\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/digital.png\",\"contentUrl\":\"https:\\\/\\\/elektrobox.ch\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/digital.png\",\"width\":322,\"height\":164},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/elektrobox.ch\\\/index.php\\\/digital-and-embedded-systems\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/elektrobox.ch\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Digital And Embedded Systems\"}]},{\"@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":"Digital And Embedded Systems - ElektroBox","description":"Learn digital and embedded systems basics, including GPIO, PWM, ADC, microcontrollers, sensors, timing, and firmware structure.","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\/digital-and-embedded-systems\/","og_locale":"en_US","og_type":"article","og_title":"Digital And Embedded Systems - ElektroBox","og_description":"Learn digital and embedded systems basics, including GPIO, PWM, ADC, microcontrollers, sensors, timing, and firmware structure.","og_url":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/","og_site_name":"ElektroBox","article_modified_time":"2026-06-02T19:23:34+00:00","og_image":[{"url":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/digital.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\/digital-and-embedded-systems\/","url":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/","name":"Digital And Embedded Systems - ElektroBox","isPartOf":{"@id":"https:\/\/elektrobox.ch\/#website"},"primaryImageOfPage":{"@id":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/#primaryimage"},"image":{"@id":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/#primaryimage"},"thumbnailUrl":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/digital.png","datePublished":"2025-11-21T06:20:32+00:00","dateModified":"2026-06-02T19:23:34+00:00","description":"Learn digital and embedded systems basics, including GPIO, PWM, ADC, microcontrollers, sensors, timing, and firmware structure.","breadcrumb":{"@id":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/#primaryimage","url":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/digital.png","contentUrl":"https:\/\/elektrobox.ch\/wp-content\/uploads\/2026\/06\/digital.png","width":322,"height":164},{"@type":"BreadcrumbList","@id":"https:\/\/elektrobox.ch\/index.php\/digital-and-embedded-systems\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elektrobox.ch\/"},{"@type":"ListItem","position":2,"name":"Digital And Embedded Systems"}]},{"@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\/855739","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=855739"}],"version-history":[{"count":7,"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/pages\/855739\/revisions"}],"predecessor-version":[{"id":856411,"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/pages\/855739\/revisions\/856411"}],"wp:attachment":[{"href":"https:\/\/elektrobox.ch\/index.php\/wp-json\/wp\/v2\/media?parent=855739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}