{"id":42590,"date":"2022-02-17T07:00:43","date_gmt":"2022-02-17T06:00:43","guid":{"rendered":"https:\/\/botland.com.pl\/blog\/building-a-server-with-arduino\/"},"modified":"2025-05-20T08:42:32","modified_gmt":"2025-05-20T06:42:32","slug":"building-a-server-with-arduino","status":"publish","type":"post","link":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/","title":{"rendered":"Building a server with Arduino"},"content":{"rendered":"<span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading time:<\/span> <span class=\"rt-time\"> 2<\/span> <span class=\"rt-label rt-postfix\">min.<\/span><\/span>\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"42590\" class=\"elementor elementor-42590 elementor-32016\" data-elementor-post-type=\"post\">\n\t\t\t\t<div class=\"elementor-element elementor-element-164b5ca e-flex e-con-boxed e-con e-parent\" data-id=\"164b5ca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-503a299f elementor-widget elementor-widget-text-editor\" data-id=\"503a299f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>This article presents an example technical solution of a web server prototype based on the Arduino platform and the Arduino Ethernet Shield module.<\/p><h2>Application of the Ethernet Shield module<\/h2><p><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/Depositphotos_474903390_L-300x292.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/Depositphotos_474903390_L-300x292.jpg 300w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/Depositphotos_474903390_L-1024x997.jpg 1024w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/Depositphotos_474903390_L-768x748.jpg 768w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/Depositphotos_474903390_L-1536x1495.jpg 1536w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/Depositphotos_474903390_L-e1645788465607.jpg 1000w\" alt=\"RJ45 cabel\" width=\"300\" height=\"292\" \/><\/p><p>To turn Arduino into a miniature centre for managing various processes over the Internet, <b>just connect the Ethernet Shield overlay<\/b>. Then, Arduino becomes a miniature web server, which can be accessed from a browser on a mobile device or PC. Using such remote communication system, we can perform various activities, including reading states of switches and buttons, controlling operating parameters of devices and components connected to Arduino, as well as reading parameters from measurement sensors.<\/p><h2>Miniature home web server on Arduino &#8211; components needed for the project<\/h2><p>To make a miniature web server using the Arduino ecosystem, you will need the following components:<\/p><ul><li><a href=\"https:\/\/botland.store\/arduino-basic-boards\/1060-arduino-uno-rev3-module-a000066-8058333490090.html\" data-wpel-link=\"internal\">Arduino UNO R3<\/a> or <a href=\"https:\/\/botland.store\/arduino-basic-boards\/1062-arduino-mega-2560-rev3-module-a000067-7630049200067.html\" data-wpel-link=\"internal\">Arduino MEGA2560<\/a> platform<\/li><li><a href=\"https:\/\/botland.store\/arduino-shield-communication\/3926-arduino-ethernet-shield-2-with-microsd-reader--7630049200364.html\" data-wpel-link=\"internal\">Arduino Ethernet Shield<\/a> extension board<\/li><li>Ethernet\/LAN wired connection with 10\/100Mbps bandwidth<\/li><li>Ethernet connection cable<\/li><li>Wi-Fi router<\/li><li>pin board<\/li><li>Connector wires for PCB<\/li><li>resistor 10k\/0.6W<\/li><li>Power supply DC 2x9V<\/li><li>monostable button (microstick)<\/li><\/ul><h2>Miniature home web server on Arduino &#8211; connecting system components<\/h2><p><img decoding=\"async\" src=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/03926_3_2019b.jpg\" sizes=\"(max-width: 600px) 100vw, 600px\" srcset=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/03926_3_2019b.jpg 600w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/02\/03926_3_2019b-300x228.jpg 300w\" alt=\"Arduino Ethernet Shield\" width=\"600\" height=\"456\" \/><br \/><a role=\"button\" href=\"https:\/\/botland.store\/arduino-shield-communication\/3926-arduino-ethernet-shield-2-with-microsd-reader--7630049200364.html\" data-wpel-link=\"internal\"><br \/>CHECK AT STORE<br \/><\/a><\/p><p>The components should be connected as follows: to digital pin 8 on the Arduino, a monostable button is connected and configured as an input. When the button is pressed, the Arduino will read a low state on this pin. Consequently, the Arduino will then set the output to a high state. When the button is released, the output will again read and maintain a low state. Information about the recorded change in the button&#8217;s position state, will be sent to the web server.<\/p><h2>Specifying the IP address<\/h2><p>An IP address (Internet Protocol address) is a numerical label assigned to each device participating in a computer network that uses the Internet Protocol for communication. Specifying an IP address is done by typing a line:<\/p><pre data-line=\"&quot;\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre><p>The IP address must be changed to match one custom configuration. For example, to assign the Ethernet shield IP address to 192.168.0.30, enter the line:<\/p><pre data-line=\"&quot;\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre><h2>Specifying the MAC address<\/h2><p>A MAC address (media access control address) is a unique identifier assigned to each device participating in a physical network. Each network device has a unique serial number that identifies itself on the network, and this is usually permanently programmed into the device&#8217;s firmware. However, in the case of the Arduino, we can define the MAC address ourselves:<\/p><pre data-line=\"&quot;\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre><p>You can set the subnet and gateway using the following commands:<\/p><pre data-line=\"&quot;\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre><p>So, to configure the Ethernet shield, the code block is given below:<\/p><pre data-line=\"&quot;\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre><h2>Arduino as a web server &#8211; target program code<\/h2><pre data-line=\"&quot;\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre><p>The above script tells the browser to refresh the page. When the page is reopened, the Arduino reads the state of the switch again and displays that state. When the button is pressed, <b>we can watch the changing state of the switch<\/b> as shown in the video demonstration. You can also set the hardware to work without a router. To do this, <b>manually assign an IP address to the Arduino&#8217;s Ethernet network<\/b>, e.g. 192.168.0.2, and a default subnet mask address of 255.255.255.0. <b>Use a crossover Ethernet cable<\/b> to connect the two devices (e.g. the PC and the Arduino). You should then be able to download the Arduino site at http:\/\/192.168.0.2 from your PC.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>By equipping the Arduino with an Ethernet Shield, you can turn it into a simple web server, and by accessing this server with a browser running on any computer connected to the same network as the Arduino, you can perform a variety of tasks.<\/p>\n","protected":false},"author":20,"featured_media":42591,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[335],"tags":[447,451],"class_list":["post-42590","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino-en","tag-electronics","tag-technologies"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Building a server with Arduino - Botland<\/title>\n<meta name=\"description\" content=\"By equipping the Arduino with an Ethernet Shield, you can turn it into a simple web server, and by accessing this server with a browser running on any computer connected to the same network as the Arduino, you can perform a variety of tasks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Building a server with Arduino - Botland\" \/>\n<meta property=\"og:description\" content=\"By equipping the Arduino with an Ethernet Shield, you can turn it into a simple web server, and by accessing this server with a browser running on any computer connected to the same network as the Arduino, you can perform a variety of tasks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/\" \/>\n<meta property=\"og:site_name\" content=\"Botland\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/Botland\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-17T06:00:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-20T06:42:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/arduino-serwer.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1510\" \/>\n\t<meta property=\"og:image:height\" content=\"1510\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Maciej Figiel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Maciej Figiel\" \/>\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:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/\"},\"author\":{\"name\":\"Maciej Figiel\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/person\\\/a8e66118d1f27ebf9f540831e5a3283b\"},\"headline\":\"Building a server with Arduino\",\"datePublished\":\"2022-02-17T06:00:43+00:00\",\"dateModified\":\"2025-05-20T06:42:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/\"},\"wordCount\":544,\"publisher\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/arduino-serwer.jpg\",\"keywords\":[\"electronics\",\"technologies\"],\"articleSection\":[\"Arduino\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/\",\"name\":\"Building a server with Arduino - Botland\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/arduino-serwer.jpg\",\"datePublished\":\"2022-02-17T06:00:43+00:00\",\"dateModified\":\"2025-05-20T06:42:32+00:00\",\"description\":\"By equipping the Arduino with an Ethernet Shield, you can turn it into a simple web server, and by accessing this server with a browser running on any computer connected to the same network as the Arduino, you can perform a variety of tasks.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/#primaryimage\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/arduino-serwer.jpg\",\"contentUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/arduino-serwer.jpg\",\"width\":1510,\"height\":1510},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/building-a-server-with-arduino\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\\\/\\\/botland.store\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Building a server with Arduino\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/\",\"name\":\"Botland\",\"description\":\"Blog Raspberry Pi, Arduino, elektronika i robotyka - Botland\",\"publisher\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#organization\",\"name\":\"Botland\",\"url\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo_kolor_WP_2-1.png\",\"contentUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/logo_kolor_WP_2-1.png\",\"width\":250,\"height\":57,\"caption\":\"Botland\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/facebook.com\\\/Botland\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/person\\\/a8e66118d1f27ebf9f540831e5a3283b\",\"name\":\"Maciej Figiel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/Image-from-iOS-150x150.jpg\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/Image-from-iOS-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/Image-from-iOS-150x150.jpg\",\"caption\":\"Maciej Figiel\"},\"description\":\"Wszechstronny, ch\u0119tnie podejmuje si\u0119 wyzwa\u0144, bo uwa\u017ca, \u017ce jest to najszybsza droga ku rozwojowi. Ceni sobie kontakt z natur\u0105 i aktywny wypoczynek. Pasjonat motoryzacji i nowych technologii.\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/author\\\/maciej-figiel\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Building a server with Arduino - Botland","description":"By equipping the Arduino with an Ethernet Shield, you can turn it into a simple web server, and by accessing this server with a browser running on any computer connected to the same network as the Arduino, you can perform a variety of tasks.","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:\/\/botland.store\/blog\/building-a-server-with-arduino\/","og_locale":"en_US","og_type":"article","og_title":"Building a server with Arduino - Botland","og_description":"By equipping the Arduino with an Ethernet Shield, you can turn it into a simple web server, and by accessing this server with a browser running on any computer connected to the same network as the Arduino, you can perform a variety of tasks.","og_url":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/","og_site_name":"Botland","article_publisher":"https:\/\/facebook.com\/Botland\/","article_published_time":"2022-02-17T06:00:43+00:00","article_modified_time":"2025-05-20T06:42:32+00:00","og_image":[{"width":1510,"height":1510,"url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/arduino-serwer.jpg","type":"image\/jpeg"}],"author":"Maciej Figiel","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Maciej Figiel","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/#article","isPartOf":{"@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/"},"author":{"name":"Maciej Figiel","@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/person\/a8e66118d1f27ebf9f540831e5a3283b"},"headline":"Building a server with Arduino","datePublished":"2022-02-17T06:00:43+00:00","dateModified":"2025-05-20T06:42:32+00:00","mainEntityOfPage":{"@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/"},"wordCount":544,"publisher":{"@id":"https:\/\/botland.com.pl\/blog\/#organization"},"image":{"@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/#primaryimage"},"thumbnailUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/arduino-serwer.jpg","keywords":["electronics","technologies"],"articleSection":["Arduino"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/","url":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/","name":"Building a server with Arduino - Botland","isPartOf":{"@id":"https:\/\/botland.com.pl\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/#primaryimage"},"image":{"@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/#primaryimage"},"thumbnailUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/arduino-serwer.jpg","datePublished":"2022-02-17T06:00:43+00:00","dateModified":"2025-05-20T06:42:32+00:00","description":"By equipping the Arduino with an Ethernet Shield, you can turn it into a simple web server, and by accessing this server with a browser running on any computer connected to the same network as the Arduino, you can perform a variety of tasks.","breadcrumb":{"@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/botland.store\/blog\/building-a-server-with-arduino\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/#primaryimage","url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/arduino-serwer.jpg","contentUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/arduino-serwer.jpg","width":1510,"height":1510},{"@type":"BreadcrumbList","@id":"https:\/\/botland.store\/blog\/building-a-server-with-arduino\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/botland.store\/blog\/"},{"@type":"ListItem","position":2,"name":"Building a server with Arduino"}]},{"@type":"WebSite","@id":"https:\/\/botland.com.pl\/blog\/#website","url":"https:\/\/botland.com.pl\/blog\/","name":"Botland","description":"Blog Raspberry Pi, Arduino, elektronika i robotyka - Botland","publisher":{"@id":"https:\/\/botland.com.pl\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/botland.com.pl\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/botland.com.pl\/blog\/#organization","name":"Botland","url":"https:\/\/botland.com.pl\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2018\/04\/logo_kolor_WP_2-1.png","contentUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2018\/04\/logo_kolor_WP_2-1.png","width":250,"height":57,"caption":"Botland"},"image":{"@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/Botland\/"]},{"@type":"Person","@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/person\/a8e66118d1f27ebf9f540831e5a3283b","name":"Maciej Figiel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2021\/12\/Image-from-iOS-150x150.jpg","url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2021\/12\/Image-from-iOS-150x150.jpg","contentUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2021\/12\/Image-from-iOS-150x150.jpg","caption":"Maciej Figiel"},"description":"Wszechstronny, ch\u0119tnie podejmuje si\u0119 wyzwa\u0144, bo uwa\u017ca, \u017ce jest to najszybsza droga ku rozwojowi. Ceni sobie kontakt z natur\u0105 i aktywny wypoczynek. Pasjonat motoryzacji i nowych technologii.","url":"https:\/\/botland.store\/blog\/author\/maciej-figiel\/"}]}},"_links":{"self":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/posts\/42590","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/comments?post=42590"}],"version-history":[{"count":0,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/posts\/42590\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/media\/42591"}],"wp:attachment":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/media?parent=42590"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/categories?post=42590"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/tags?post=42590"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}