{"id":42728,"date":"2022-05-03T08:00:20","date_gmt":"2022-05-03T06:00:20","guid":{"rendered":"https:\/\/botland.com.pl\/blog\/what-are-arduino-operators\/"},"modified":"2022-05-03T06:00:22","modified_gmt":"2022-05-03T04:00:22","slug":"what-are-arduino-operators","status":"publish","type":"post","link":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/","title":{"rendered":"What are Arduino operators?"},"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\"> 4<\/span> <span class=\"rt-label rt-postfix\">min.<\/span><\/span><p>Arduino operators are a type of symbols used to program the board. Thanks to them the compiler knows exactly what action to perform.<\/p>\n<h2>Arduino programming operators<\/h2>\n<p><a href=\"https:\/\/botland.store\/brand\/89-arduino\" data-wpel-link=\"internal\">Arduino<\/a> board programming is very similar to programming virtually any other development board. It relies heavily on creating logical relationships between variables. Sometimes these involve operations on values from external sources such as <a href=\"https:\/\/botland.store\/6-sensors\" data-wpel-link=\"internal\">sensors<\/a>, peripherals (for example, a keyboard) or from a clock. <b>A full understanding of how each operator works is essential to using them correctly<\/b>. Operators involve different types of operations &#8211; depending on the source of information they can be divided into different categories, but the most basic ones are logical operators, bitwise operators, arithmetic operators, assignment operators, comparison operators.<\/p>\n<p><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/05\/piqsels.com-id-zkmif-300x300.jpg\" sizes=\"(max-width: 300px) 100vw, 300px\" srcset=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/05\/piqsels.com-id-zkmif-300x300.jpg 300w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/05\/piqsels.com-id-zkmif-150x150.jpg 150w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/05\/piqsels.com-id-zkmif-768x768.jpg 768w, https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2022\/05\/piqsels.com-id-zkmif.jpg 1000w\" alt=\"Programming\" width=\"300\" height=\"300\" \/><\/p>\n<h2>What are Arduino arithmetic operators?<\/h2>\n<p>Arithmetic operators are <b>programming tools<\/b> thanks to which <b>you can perform basic arithmetic operations<\/b> on variables. They are mainly concerned with addition, multiplication, subtraction, division, and thus are able to return the result of a sum, difference, product, quotient or remainder from an action on two arguments.<\/p>\n<h4>Operator \u201c + \u201d<\/h4>\n<p>The &#8220;+&#8221; operator is <b>responsible for the sum operation<\/b>, i.e. operations on two variables &#8211; it returns the value of the sum of expressions. When using this operation you must remember about coincidence of types of added variables, or about effects which result from lack of coincidence. For example, if the variable to which the result of the operation will be assigned stores only integers (for example &#8220;int&#8221;), then even in the case of a result with a number after the decimal point (for example the sum of two &#8220;float&#8221; variables) only the integer variable will be saved (for example 2 + 4,2 = 6), and the fraction part will be lost.<\/p>\n<h4>Operator &#8221; &#8211; &#8220;<\/h4>\n<p>This operator is <b>responsible for the difference operation<\/b>, that is the operation of subtracting from the value of the variable before the &#8220;-&#8221; sign the value of the variable after this sign (the order is important!). When performing this operation, you should also be aware of the capacity of the variables due to their types (some are able to write decimal parts and some are not), so that you do not lose valuable data.<\/p>\n<h4>Operator &#8221; * &#8220;<\/h4>\n<p>The &#8216;*&#8217; operator is <b>responsible for the arithmetic operation called multiplication<\/b>. It is one of the main arithmetic operations that allows you to perform mathematical operations on variables, as an example.<\/p>\n<h4>Operator &#8221; \/ &#8220;<\/h4>\n<p>The &#8220;\/&#8221; operator is <b>responsible for the quotient<\/b> (division), another of the four most important arithmetic operations. The operator causes an operation between two variables and returns the result at the end. Again, special care must be taken with the type of variables on which operations are performed &#8211; inappropriate selection may result in loss of some data.<\/p>\n<h4>Operator &#8221; = &#8220;<\/h4>\n<p>The operator &#8220;=&#8221; is an <b>assignment function<\/b>. For example, you can use it to assign the result of an action on another variable to a new variable. The value stored in the variable after the assignment operator is assigned to the variable before it. For example if:<\/p>\n<pre data-line=\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre>\n<p>then after the operation: a = b, the state will change to:<\/p>\n<pre data-line=\"><code>\n\t\t\t\t\t\n\t\t\t\t<\/code><\/pre>\n<h4>Operator &#8221; % &#8220;<\/h4>\n<p>The &#8220;%&#8221; character is <b>an operator that returns the remainder of the division<\/b>. If the result of dividing two integers is an integer, the &#8220;%&#8221; operator will return just that remainder, but if dividing variables that result in an integer, it will also return the remainder (0). So, for example:<\/p>\n<p>10%5 = 0 (because 10\/5 = 2), but<\/p>\n<p>11%5 = 1 (because 10\/5 = 2 and 1 is already indivisible by 2)<\/p>\n<p>This type of operation often allows conversion between types of variables, for example.<\/p>\n<h2>Comparison operators<\/h2>\n<p>Comparison operators <b>allow you to create conditional relationships<\/b>, for example, if the variable a (to which temperature is assigned) is greater than a certain value, then turn on cooling. These operators are also very useful in conditional loops. Basic operators for <a href=\"https:\/\/botland.store\/brand\/89-arduino\" data-wpel-link=\"internal\">Arduino<\/a> are:<\/p>\n<h4>Operator &#8221; &gt; &#8220;<\/h4>\n<p>The &#8220;greater than&#8221; operator represented by the &#8220;&gt;&#8221; sign, which <b>is supposed to compare the value of the variable<\/b> before the operator to the value placed after it. If the first variable is greater than the second &#8211; the result of the operation will be &#8220;TRUE&#8221; (with value 1), otherwise the value will be &#8220;FALSE&#8221; (with value 0). Remember to operate on variables of the same type when using dependencies.<\/p>\n<h4>Operator &#8221; &gt;= &#8220;<\/h4>\n<p>The operator &#8220;&gt;=&#8221; consists of two characters &#8211; the so-called &#8220;greater than or equal to&#8221;. <b>It works on the same principle as the operator shown above<\/b>, but also assumes a positive result when the compared values are equal.<\/p>\n<h4>Operator &#8221; &lt; &#8220;<\/h4>\n<p>The &#8220;less than&#8221; operator. <b>Works on the exact opposite principle of the &#8220;greater than&#8221; operator<\/b> &#8211; in the case where the variable before the operator is greater than the one after it, the result will be &#8220;FALSE&#8221; (with a value of 0), i.e. &#8220;not true that the first variable is smaller than the second&#8221;. The value &#8220;TRUE&#8221; (with a value of 1), will be when the value of the first variable is less than the value of the second variable.<\/p>\n<h4>Operator &#8221; &lt;= &#8220;<\/h4>\n<p>The &#8220;less than or equal to&#8221; operator <b>is analogous to the above operator<\/b> consisting of two characters. The positive result will always be the case when there is a variable before the operator with value less than or equal to the value of the variable placed after the operator (the value &#8220;FALSE&#8221; will be the result in any other case).<\/p>\n<h4>Operator &#8221; == &#8220;<\/h4>\n<p>The equality operator, written as &#8220;==&#8221;,<b> is able to clearly determine if the values of two variables being compared are equal <\/b>&#8211; only if so, the result of such operation will be &#8220;TRUE&#8221;. Otherwise the result will be &#8220;FALSE&#8221; (with value 0).<\/p>\n<h4>Operator &#8221; != &#8220;<\/h4>\n<p>The inequality operator, or for some &#8220;negation&#8221; is written as &#8220;!=&#8221;. <b>It is a tool by which you can explicitly state that the values of two variables are not equal<\/b>. The result will always be &#8220;TRUE&#8221; until the values of the variables on both sides of the operator are the same. It is worth remembering to operate on the same types of variables to avoid false results.<\/p>\n<h2>Other operators<\/h2>\n<p><img decoding=\"async\" src=\"https:\/\/botland.store\/blog\/sandbox\/wp-content\/uploads\/2021\/07\/arduino.jpg\" alt=\"Arduino\" width=\"300\" height=\"204\" \/><br \/>\n<a role=\"button\" href=\"https:\/\/botland.store\/brand\/89-arduino\" data-wpel-link=\"internal\"><br \/>\nCHECK AT STORE<br \/>\n<\/a><\/p>\n<p>Programming largely boils down to manipulating operators with known functions. A programmer who intends to create a program on Arduino should know exactly what specific <a href=\"https:\/\/botland.store\/brand\/89-arduino\" data-wpel-link=\"internal\">Arduino<\/a> operators are used for. <b>Presented above are only the most basic operators<\/b>.<\/p>\n<p>Nevertheless, the best way to learn how operators work is to combine theory with practice. If you can, start programming and using operators yourself, using available sources of knowledge.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Programming is not difficult as long as you know some basic elements of programming syntax. In this article you will learn what operators are, which enable you not only to perform calculations.<\/p>\n","protected":false},"author":20,"featured_media":42729,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[335],"tags":[441,349],"class_list":["post-42728","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-arduino-en","tag-programming","tag-tips"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What are Arduino operators? - Botland<\/title>\n<meta name=\"description\" content=\"Arduino operators are basic tools that programmers use to create applications for devices. Thanks to them, the compiler knows what actions to take.\" \/>\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\/what-are-arduino-operators\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What are Arduino operators? - Botland\" \/>\n<meta property=\"og:description\" content=\"Arduino operators are basic tools that programmers use to create applications for devices. Thanks to them, the compiler knows what actions to take.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/botland.store\/blog\/what-are-arduino-operators\/\" \/>\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-05-03T06:00:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/operatory.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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/\"},\"author\":{\"name\":\"Maciej Figiel\",\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#\\\/schema\\\/person\\\/a8e66118d1f27ebf9f540831e5a3283b\"},\"headline\":\"What are Arduino operators?\",\"datePublished\":\"2022-05-03T06:00:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/\"},\"wordCount\":1055,\"publisher\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/operatory.jpg\",\"keywords\":[\"programming\",\"tips\"],\"articleSection\":[\"Arduino\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/\",\"name\":\"What are Arduino operators? - Botland\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/botland.com.pl\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/operatory.jpg\",\"datePublished\":\"2022-05-03T06:00:20+00:00\",\"description\":\"Arduino operators are basic tools that programmers use to create applications for devices. Thanks to them, the compiler knows what actions to take.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/#primaryimage\",\"url\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/operatory.jpg\",\"contentUrl\":\"https:\\\/\\\/botland.store\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/07\\\/operatory.jpg\",\"width\":1510,\"height\":1510},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/botland.store\\\/blog\\\/what-are-arduino-operators\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Strona g\u0142\u00f3wna\",\"item\":\"https:\\\/\\\/botland.store\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What are Arduino operators?\"}]},{\"@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":"What are Arduino operators? - Botland","description":"Arduino operators are basic tools that programmers use to create applications for devices. Thanks to them, the compiler knows what actions to take.","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\/what-are-arduino-operators\/","og_locale":"en_US","og_type":"article","og_title":"What are Arduino operators? - Botland","og_description":"Arduino operators are basic tools that programmers use to create applications for devices. Thanks to them, the compiler knows what actions to take.","og_url":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/","og_site_name":"Botland","article_publisher":"https:\/\/facebook.com\/Botland\/","article_published_time":"2022-05-03T06:00:20+00:00","og_image":[{"width":1510,"height":1510,"url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/operatory.jpg","type":"image\/jpeg"}],"author":"Maciej Figiel","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Maciej Figiel","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/#article","isPartOf":{"@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/"},"author":{"name":"Maciej Figiel","@id":"https:\/\/botland.com.pl\/blog\/#\/schema\/person\/a8e66118d1f27ebf9f540831e5a3283b"},"headline":"What are Arduino operators?","datePublished":"2022-05-03T06:00:20+00:00","mainEntityOfPage":{"@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/"},"wordCount":1055,"publisher":{"@id":"https:\/\/botland.com.pl\/blog\/#organization"},"image":{"@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/#primaryimage"},"thumbnailUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/operatory.jpg","keywords":["programming","tips"],"articleSection":["Arduino"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/","url":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/","name":"What are Arduino operators? - Botland","isPartOf":{"@id":"https:\/\/botland.com.pl\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/#primaryimage"},"image":{"@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/#primaryimage"},"thumbnailUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/operatory.jpg","datePublished":"2022-05-03T06:00:20+00:00","description":"Arduino operators are basic tools that programmers use to create applications for devices. Thanks to them, the compiler knows what actions to take.","breadcrumb":{"@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/botland.store\/blog\/what-are-arduino-operators\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/#primaryimage","url":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/operatory.jpg","contentUrl":"https:\/\/botland.store\/blog\/wp-content\/uploads\/2022\/07\/operatory.jpg","width":1510,"height":1510},{"@type":"BreadcrumbList","@id":"https:\/\/botland.store\/blog\/what-are-arduino-operators\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Strona g\u0142\u00f3wna","item":"https:\/\/botland.store\/blog\/"},{"@type":"ListItem","position":2,"name":"What are Arduino operators?"}]},{"@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\/42728","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=42728"}],"version-history":[{"count":0,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/posts\/42728\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/media\/42729"}],"wp:attachment":[{"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/media?parent=42728"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/categories?post=42728"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/botland.store\/blog\/wp-json\/wp\/v2\/tags?post=42728"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}