{"id":6018,"date":"2024-02-11T22:48:23","date_gmt":"2024-02-11T21:48:23","guid":{"rendered":"https:\/\/www.pschatzmann.ch\/home\/?p=6018"},"modified":"2024-02-17T09:49:10","modified_gmt":"2024-02-17T08:49:10","slug":"stm32f411-discovery-kit-and-arduino","status":"publish","type":"post","link":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/","title":{"rendered":"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip"},"content":{"rendered":"<p>Quite some time ago, I started to look into the <a href=\"https:\/\/www.pschatzmann.ch\/home\/2023\/01\/27\/getting-started-with-the-stm43f11-discovery-kit-and-arduino\/\">STM32F411 Discovery Kit with Arduino<\/a>. Unfortunatly the <strong>audio codec i2c address<\/strong> was not showing up in the port scan. I found out that the <strong>chip needs to be activated<\/strong> with<\/p>\n<pre><code>setPinMode(PD4, OUTPUT);\ndigitalWrite(PD4, HIGH);\n<\/code><\/pre>\n<p>One of the reasons why I started my <a href=\"https:\/\/github.com\/pschatzmann\/arduino-audio-driver\">arduino-audio-driver<\/a> project, was that I wanted to have a clean API for the <strong>LQFP100<\/strong> audio chip that is provided by this board. So I added driver logic and the following pin definitions to the project:<\/p>\n<pre><code>    \/\/ add i2c codec pins: scl, sda, port, frequency\n    addI2C(PinFunction::CODEC, PB6, PB9);\n    \/\/ add i2s pins: mclk, bck, ws,data_out, data_in ,(port)\n    addI2S(PinFunction::CODEC, PC7, PC10, PA4, PC3, PC12);\n\n    \/\/ add other pins\n    addPin(PinFunction::KEY, PA0, PinLogic::Output);     \/\/ user button\n    addPin(PinFunction::LED, PD12, PinLogic::Output, 0); \/\/ green\n    addPin(PinFunction::LED, PD5, PinLogic::Output, 1);  \/\/ red\n    addPin(PinFunction::LED, PD13, PinLogic::Output, 2); \/\/ orange\n    addPin(PinFunction::LED, PD14, PinLogic::Output, 3); \/\/ red\n    addPin(PinFunction::LED, PD15, PinLogic::Output, 4); \/\/ blue\n    addPin(PinFunction::PA, PD4, PinLogic::Output); \/\/ reset pin (active high)\n<\/code><\/pre>\n<p>I finally managed to to have this piece working. Here is the Arduino Sketch which sets up the audio chip with the default settings (44100 samples per second, 16 bits) &#8211; because no parameter have been defined:<\/p>\n<pre><code>#include \"AudioBoard.h\"\n\nAudioBoard board(STM32F411Disco); \/\/ CS43l22\n\nvoid setup() {\n  LOGLEVEL_AUDIODRIVER = AudioDriverDebug;\n  Serial.begin(115200);\n  while(!Serial);\n  Serial.println(\"setup...\");\n\n  board.begin();\n\n  Serial.println(\"board has started\");\n}\n\nvoid loop() {}\n<\/code><\/pre>\n<p>And here is the related output<\/p>\n<pre><code>22:09:33.495 -&gt; setup...\n22:09:33.495 -&gt; Debug:   AudioBoard::begin\n22:09:33.495 -&gt; Debug:   DriverPins::begin\n22:09:33.495 -&gt; Debug:   pinMode 192\n22:09:33.495 -&gt; Debug:   pinMode 59\n22:09:33.495 -&gt; Debug:   pinMode 52\n22:09:33.495 -&gt; Debug:   pinMode 60\n22:09:33.495 -&gt; Debug:   pinMode 61\n22:09:33.495 -&gt; Debug:   pinMode 62\n22:09:33.495 -&gt; Debug:   pinMode 51\n22:09:33.495 -&gt; Debug:   PinsI2C::begin for 7\n22:09:33.495 -&gt; Info:    setting up I2C scl: 22, sda: 25\n22:09:33.495 -&gt; Info:    Setting i2c clock: 100000\n22:09:33.495 -&gt; Debug:   AudioDriverCS43l22Class::begin\n22:09:33.495 -&gt; Info:    setPAPower pin 51 -&gt; 1\n22:09:33.497 -&gt; Debug:   cs43l22_Init\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x2 value=0x1\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x4 value=0xAA\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x5 value=0x81\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x6 value=0x4\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x20 value=0x18\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x21 value=0x18\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0xF value=0x6\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x24 value=0x0\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x25 value=0x0\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0xA value=0x0\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0xE value=0x4\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x27 value=0x0\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x1F value=0xF\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x1A value=0xA\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x1B value=0xA\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x20 value=0x18\n22:09:33.497 -&gt; Debug:   i2c_bus_write_bytes: addr=0x94 reglen=1 datalen=1 - reg=0x21 value=0x18\n22:09:33.497 -&gt; board has started\n<\/code><\/pre>\n<p>As the next step I just have to work on the <strong>I2S support for this board<\/strong>&#8230;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Quite some time ago, I started to look into the STM32F411 Discovery Kit with Arduino. Unfortunatly the audio codec i2c address was not showing up in the port scan. I found out that the chip needs to be activated with setPinMode(PD4, OUTPUT); digitalWrite(PD4, HIGH); One of the reasons why I [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5270,"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,22],"tags":[45],"class_list":["post-6018","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino","category-machine-sound","tag-stm32"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip - 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\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip - Phil Schatzmann\" \/>\n<meta property=\"og:description\" content=\"Quite some time ago, I started to look into the STM32F411 Discovery Kit with Arduino. Unfortunatly the audio codec i2c address was not showing up in the port scan. I found out that the chip needs to be activated with setPinMode(PD4, OUTPUT); digitalWrite(PD4, HIGH); One of the reasons why I [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/\" \/>\n<meta property=\"og:site_name\" content=\"Phil Schatzmann\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-11T21:48:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-17T08:49:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/01\/stm32F411Disco-e1674818325750.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"280\" \/>\n\t<meta property=\"og:image:height\" content=\"180\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/\"},\"author\":{\"name\":\"pschatzmann\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"headline\":\"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip\",\"datePublished\":\"2024-02-11T21:48:23+00:00\",\"dateModified\":\"2024-02-17T08:49:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/\"},\"wordCount\":154,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#\\\/schema\\\/person\\\/73a53638a4e34e8373405fd737dac9b1\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/stm32F411Disco-e1674818325750.jpeg\",\"keywords\":[\"STM32\"],\"articleSection\":[\"Arduino\",\"Machine Sound\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/\",\"name\":\"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip - Phil Schatzmann\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/stm32F411Disco-e1674818325750.jpeg\",\"datePublished\":\"2024-02-11T21:48:23+00:00\",\"dateModified\":\"2024-02-17T08:49:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/stm32F411Disco-e1674818325750.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.pschatzmann.ch\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/stm32F411Disco-e1674818325750.jpeg\",\"width\":280,\"height\":180},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/2024\\\/02\\\/11\\\/stm32f411-discovery-kit-and-arduino\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.pschatzmann.ch\\\/home\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip\"}]},{\"@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":"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip - 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\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/","og_locale":"en_US","og_type":"article","og_title":"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip - Phil Schatzmann","og_description":"Quite some time ago, I started to look into the STM32F411 Discovery Kit with Arduino. Unfortunatly the audio codec i2c address was not showing up in the port scan. I found out that the chip needs to be activated with setPinMode(PD4, OUTPUT); digitalWrite(PD4, HIGH); One of the reasons why I [&hellip;]","og_url":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/","og_site_name":"Phil Schatzmann","article_published_time":"2024-02-11T21:48:23+00:00","article_modified_time":"2024-02-17T08:49:10+00:00","og_image":[{"width":280,"height":180,"url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/01\/stm32F411Disco-e1674818325750.jpeg","type":"image\/jpeg"}],"author":"pschatzmann","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pschatzmann","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#article","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/"},"author":{"name":"pschatzmann","@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"headline":"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip","datePublished":"2024-02-11T21:48:23+00:00","dateModified":"2024-02-17T08:49:10+00:00","mainEntityOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/"},"wordCount":154,"commentCount":1,"publisher":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#\/schema\/person\/73a53638a4e34e8373405fd737dac9b1"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/01\/stm32F411Disco-e1674818325750.jpeg","keywords":["STM32"],"articleSection":["Arduino","Machine Sound"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/","url":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/","name":"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip - Phil Schatzmann","isPartOf":{"@id":"https:\/\/www.pschatzmann.ch\/home\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#primaryimage"},"image":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#primaryimage"},"thumbnailUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/01\/stm32F411Disco-e1674818325750.jpeg","datePublished":"2024-02-11T21:48:23+00:00","dateModified":"2024-02-17T08:49:10+00:00","breadcrumb":{"@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#primaryimage","url":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/01\/stm32F411Disco-e1674818325750.jpeg","contentUrl":"https:\/\/www.pschatzmann.ch\/wp-content\/uploads\/2024\/01\/stm32F411Disco-e1674818325750.jpeg","width":280,"height":180},{"@type":"BreadcrumbList","@id":"https:\/\/www.pschatzmann.ch\/home\/2024\/02\/11\/stm32f411-discovery-kit-and-arduino\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.pschatzmann.ch\/home\/"},{"@type":"ListItem","position":2,"name":"STM32F411 Discovery Kit and Arduino: Setting up the Audio Chip"}]},{"@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\/6018","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=6018"}],"version-history":[{"count":13,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/6018\/revisions"}],"predecessor-version":[{"id":6031,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/posts\/6018\/revisions\/6031"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media\/5270"}],"wp:attachment":[{"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/media?parent=6018"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/categories?post=6018"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.pschatzmann.ch\/home\/wp-json\/wp\/v2\/tags?post=6018"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}