{"id":818,"date":"2024-06-13T07:36:59","date_gmt":"2024-06-13T07:36:59","guid":{"rendered":"https:\/\/andreitupits23.thkit.ee\/WP\/?page_id=818"},"modified":"2024-06-13T08:18:51","modified_gmt":"2024-06-13T08:18:51","slug":"ulesanne-5","status":"publish","type":"page","link":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/","title":{"rendered":"\u00dclesanne 5"},"content":{"rendered":"\n<div class=\"wp-block-group alignfull has-background-background-color has-background\" style=\"margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--30)\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-container-core-group-is-layout-392eb801 wp-block-group-is-layout-constrained\">\n<p>Interaktiivne infoekraan<\/p>\n\n\n\n<p><mark><strong>T\u00f6\u00f6kirjeldus<\/strong><\/mark><\/p>\n\n\n\n<p>Fotor\u00f5huanduri t\u00f6\u00f6 \u2013 saadud andmed jagatakse kaheks v\u00e4\u00e4rtuseks: \u00f6\u00f6 ja p\u00e4ev. Termoanduri t\u00f6\u00f6 \u2013 saadud andmed muudetakse pingeks ja kraadideks Celsiuse j\u00e4rgi. Potentsiomeetri ja LCD ekraani t\u00f6\u00f6 \u2013 saadud andmed potentsiomeetrist jagatakse kolmeks v\u00e4\u00e4rtuseks, mille korral LCD ekraan muudab pilti:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Ekraanil kuvatakse \u201cHello!\u201d, t\u00e4nane kuup\u00e4ev (sisestatud k\u00e4sitsi) ja termoanduri n\u00e4idud \u2013 pinge.<\/li>\n\n\n\n<li>Ekraanil kuvatakse t\u00e4nane n\u00e4dalap\u00e4ev (sisestatud k\u00e4sitsi), termoanduri n\u00e4idud \u2013 temperatuur kraadi ja t\u00e4hega C, samuti fotor\u00f5huanduri n\u00e4idud \u201cDay\u201d v\u00f5i \u201cNight\u201d koos vastavate p\u00e4ikese ja kuu piltidega.<\/li>\n\n\n\n<li>Ekraanil kuvatakse kiri \u201cTimer:\u201d koos tagasiloendusega 8-st 0-ni. Allosas kuvatakse kell, mis muudab osuti asendit iga 2 sekundi j\u00e4rel p\u00e4rip\u00e4eva suunas. Kui taimer l\u00f5petab loenduse, ilmub kiri Time out!<\/li>\n<\/ol>\n\n\n\n<p><mark><strong>Komponendid<\/strong><\/mark><\/p>\n\n\n\n<p>Fototakisti \u2013 1<br>Takisti (220\u03a9) \u2013 1, Takisti (10k\u03a9) \u2013 1<br>Termoandur \u2013 1<br>Potentsiomeeter \u2013 1<br>LCD 16 x 2 \u2013 1<br>Arduino Uno R3 \u2013 1<br>V\u00e4ike breadboard \u2013 1<\/p>\n\n\n\n<p><mark><strong>Kasutamine<\/strong><\/mark><\/p>\n\n\n\n<p>Digitaalsed reklaamtahvlid toatemperatuuri ja valgustatuse kuvamise ekraanid ekraanid, mis vahetavad erinevaid t\u00f6\u00f6re\u017eiime<\/p>\n\n\n\n<p><strong><mark>Kood<\/mark><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;LiquidCrystal.h&gt;\nconst int rs = 12, e = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;\nLiquidCrystal lcd(rs, e, d4, d5, d6, d7);\n          \nbyte degree&#91;8] = {0b01100, 0b10010, 0b10010, 0b01100, 0b00000, 0b00000, 0b00000, 0b00000};\nbyte sun&#91;8] = {0b10000, 0b00110, 0b01111, 0b01111, 0b00110, 0b10000, 0b00101, 0b01001};\nbyte moon&#91;8] = {0b00000, 0b00000, 0b01110, 0b11101, 0b11111, 0b01110, 0b00000, 0b00000};\nbyte C&#91;8] = {0b01110, 0b10001, 0b10001, 0b10000, 0b10000, 0b10001, 0b10001, 0b01110};\nbyte up&#91;8] = {0b00000,0b01110,0b10101,0b10101,0b10001,0b01110,0b00000,0b00000};\nbyte right&#91;8] = {0b00000,0b01110,0b10001,0b10111,0b10001,0b01110,0b00000,0b00000};\nbyte down&#91;8] = {0b00000,0b01110,0b10001,0b10101,0b10101,0b01110,0b00000,0b00000};\nbyte left&#91;8] = {0b00000,0b01110,0b10001,0b11101,0b10001,0b01110,0b00000,0b00000};\n\n\/\/\u0422\u0430\u0439\u043c\u0435\u0440\nint timer = 8;\n\n\/\/\u041f\u043e\u0442\u0435\u043d\u0446\u0438\u043e\u043c\u0435\u0442\u0440\nint sensorValue = 2;\nint Value_new;\n\n\/\/\u0421\u0432\u0435\u0442\nconst int sensorPin = 1;\nint lightLevel;\n\n\/\/\u0422\u0435\u0440\u043c\u043e\u0434\u0430\u0442\u0447\u0438\u043a\nconst int temperaturePin = 0;\nfloat voltage;\nint degreesC;\n\nvoid setup()\n{\n  lcd.createChar(1, degree);\n  lcd.createChar(3, sun);\n  lcd.createChar(4, moon);\n  lcd.createChar(6, C);\n  \n  lcd.createChar(7, up);\n  lcd.createChar(8, right);\n  lcd.createChar(10, down);\n  lcd.createChar(13, left);\n}\n\nvoid loop()\n{\n  \n  lightLevel = analogRead(sensorPin);\n  lightLevel = map(lightLevel, 300, 800, 0, 2);  \n  lcd.begin(16, 2);\n  tmp_stat();\n  \n  \/\/\u041f\u043e\u0442\u0435\u043d\u0446\u0438\u043e\u043c\u0435\u0442\u0440\n  Value_new = analogRead(sensorValue);\n  Value_new = map(Value_new,0,1023,1,3);\n  \n  \/\/\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u043a\u043e\u0434\n  if (Value_new == 1)\n  {\n    lcd.clear();\n\tlcd.setCursor(5, 0);\n\tlcd.print(\"Hello!\");\n    lcd.setCursor(11, 1);\n    lcd.print(voltage);\n    lcd.setCursor(15, 1);\n    lcd.print(\"V\");\n    lcd.setCursor(0, 1);\n    lcd.print(\"24.05.22\");\n    delay(1000);\n  }\n  else if(Value_new == 2)\n  {\n    if (degreesC &gt; 100 || degreesC &lt; 0)\n    {\n      lcd.setCursor(5,0);\n    }\n    else\n    {\n      lcd.setCursor(6,0);\n    }\n    \n    lcd.print(degreesC);\n    lcd.setCursor(8,0);\n    lcd.write(6);\n    lcd.write(1);\n    lcd.setCursor(0,0);\n    lcd.print(\"Tue.\");\n    \n    if (lightLevel == -1)\n    {\n      lcd.setCursor(6, 1);\n      lcd.write(3);\n      lcd.print(\"Day\");\n      delay(1000);      \n    }\n    \n    else if (lightLevel == 2)\n    {\n      lcd.setCursor(5, 1);\n      lcd.write(4);\n      lcd.print(\"Night\");\n      \n      delay(1000);\n    \n    }\n    delay(1000);\n  }\n  else if(Value_new == 3)\n  {\n    timer1();\n  }\n}\n\n\/\/\u0422\u0435\u0440\u043c\u043e\u0434\u0430\u0442\u0447\u0438\u043a\nfloat tmp_stat()\n{\n  voltage = getVoltage(temperaturePin);\n  degreesC = (voltage - 0.5) * 100.0;\n  return voltage, degreesC;\n}\n\nfloat getVoltage(int pin)\n{\n  return (analogRead(pin) * 0.004882814);\n}\n\n\/\/\u0422\u0430\u0439\u043c\u0435\u0440\nvoid timer1()\n{\n\tlcd.clear();\n    lcd.setCursor(0,0);\n    lcd.print(\"Timer:\");\n    for (timer; timer != -1; timer--)\n    { \n       \n      lcd.setCursor(7,0);\n      lcd.print(timer);\n      \n      lcd.setCursor(7,1);\n      switch (timer) \n      {\n        case 8:\n        lcd.write(7);\n        break; \n        case 6:\n        lcd.write(8);\n        break;\n        case 4:\n        lcd.write(10);\n        break;\n        case 2:\n        lcd.write(13);\n        break;\n        case 0:\n        lcd.write(7);\n        break;\n      }\n      delay(1000);\n    }\n    lcd.clear();\n    lcd.setCursor(3,0);\n    lcd.print(\"Time out!!\");\n    delay(1000);\n\n}<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><mark><strong>Link<\/strong><\/mark><\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"INFOEKRAAN\" width=\"620\" height=\"349\" src=\"https:\/\/www.youtube.com\/embed\/Hqh4PfFPrn4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><mark><strong>Konstruktsioon Tinkercad<\/strong><\/mark><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"581\" src=\"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-1024x581.png\" alt=\"\" class=\"wp-image-820\" srcset=\"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-1024x581.png 1024w, https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-300x170.png 300w, https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-768x435.png 768w, https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-750x425.png 750w, https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1.png 1270w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Interaktiivne infoekraan T\u00f6\u00f6kirjeldus Fotor\u00f5huanduri t\u00f6\u00f6 \u2013 saadud andmed jagatakse kaheks v\u00e4\u00e4rtuseks: \u00f6\u00f6 ja p\u00e4ev. Termoanduri t\u00f6\u00f6 \u2013 saadud andmed muudetakse pingeks ja kraadideks Celsiuse j\u00e4rgi. Potentsiomeetri ja LCD ekraani t\u00f6\u00f6 \u2013 saadud andmed potentsiomeetrist jagatakse kolmeks v\u00e4\u00e4rtuseks, mille korral LCD ekraan muudab pilti: Komponendid Fototakisti \u2013 1Takisti (220\u03a9) \u2013 1, Takisti (10k\u03a9) \u2013 1Termoandur \u2013<a class=\"more-link\" href=\"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/\">Continue reading <span class=\"screen-reader-text\">&#8220;\u00dclesanne 5&#8221;<\/span><\/a><\/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-818","page","type-page","status-publish","hentry","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u00dclesanne 5 - \/ &Otilde;pimapp \/ Portfoolio<\/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:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u00dclesanne 5 - \/ &Otilde;pimapp \/ Portfoolio\" \/>\n<meta property=\"og:description\" content=\"Interaktiivne infoekraan T\u00f6\u00f6kirjeldus Fotor\u00f5huanduri t\u00f6\u00f6 \u2013 saadud andmed jagatakse kaheks v\u00e4\u00e4rtuseks: \u00f6\u00f6 ja p\u00e4ev. Termoanduri t\u00f6\u00f6 \u2013 saadud andmed muudetakse pingeks ja kraadideks Celsiuse j\u00e4rgi. Potentsiomeetri ja LCD ekraani t\u00f6\u00f6 \u2013 saadud andmed potentsiomeetrist jagatakse kolmeks v\u00e4\u00e4rtuseks, mille korral LCD ekraan muudab pilti: Komponendid Fototakisti \u2013 1Takisti (220\u03a9) \u2013 1, Takisti (10k\u03a9) \u2013 1Termoandur \u2013Continue reading &quot;\u00dclesanne 5&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/\" \/>\n<meta property=\"og:site_name\" content=\"\/ &Otilde;pimapp \/ Portfoolio\" \/>\n<meta property=\"article:modified_time\" content=\"2024-06-13T08:18:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-1024x581.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/\",\"url\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/\",\"name\":\"\u00dclesanne 5 - \\\/ &Otilde;pimapp \\\/ Portfoolio\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/image-1-1024x581.png\",\"datePublished\":\"2024-06-13T07:36:59+00:00\",\"dateModified\":\"2024-06-13T08:18:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/#primaryimage\",\"url\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/image-1.png\",\"contentUrl\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/image-1.png\",\"width\":1270,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/ulesanne-5\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u00dclesanne 5\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/#website\",\"url\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/\",\"name\":\"\\\/ &Otilde;pimapp \\\/ Portfoolio\",\"description\":\"Welcome to my WP page.\",\"publisher\":{\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/#organization\",\"name\":\"\\\/ &Otilde;pimapp \\\/ Portfoolio\",\"url\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/cropped-logo.png\",\"contentUrl\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/cropped-logo.png\",\"width\":240,\"height\":240,\"caption\":\"\\\/ &Otilde;pimapp \\\/ Portfoolio\"},\"image\":{\"@id\":\"https:\\\/\\\/andreitupits23.thkit.ee\\\/WP\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u00dclesanne 5 - \/ &Otilde;pimapp \/ Portfoolio","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:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/","og_locale":"en_GB","og_type":"article","og_title":"\u00dclesanne 5 - \/ &Otilde;pimapp \/ Portfoolio","og_description":"Interaktiivne infoekraan T\u00f6\u00f6kirjeldus Fotor\u00f5huanduri t\u00f6\u00f6 \u2013 saadud andmed jagatakse kaheks v\u00e4\u00e4rtuseks: \u00f6\u00f6 ja p\u00e4ev. Termoanduri t\u00f6\u00f6 \u2013 saadud andmed muudetakse pingeks ja kraadideks Celsiuse j\u00e4rgi. Potentsiomeetri ja LCD ekraani t\u00f6\u00f6 \u2013 saadud andmed potentsiomeetrist jagatakse kolmeks v\u00e4\u00e4rtuseks, mille korral LCD ekraan muudab pilti: Komponendid Fototakisti \u2013 1Takisti (220\u03a9) \u2013 1, Takisti (10k\u03a9) \u2013 1Termoandur \u2013Continue reading \"\u00dclesanne 5\"","og_url":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/","og_site_name":"\/ &Otilde;pimapp \/ Portfoolio","article_modified_time":"2024-06-13T08:18:51+00:00","og_image":[{"url":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-1024x581.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/","url":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/","name":"\u00dclesanne 5 - \/ &Otilde;pimapp \/ Portfoolio","isPartOf":{"@id":"https:\/\/andreitupits23.thkit.ee\/WP\/#website"},"primaryImageOfPage":{"@id":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/#primaryimage"},"image":{"@id":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/#primaryimage"},"thumbnailUrl":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1-1024x581.png","datePublished":"2024-06-13T07:36:59+00:00","dateModified":"2024-06-13T08:18:51+00:00","breadcrumb":{"@id":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/#primaryimage","url":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1.png","contentUrl":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/06\/image-1.png","width":1270,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/andreitupits23.thkit.ee\/WP\/ulesanne-5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/andreitupits23.thkit.ee\/WP\/"},{"@type":"ListItem","position":2,"name":"\u00dclesanne 5"}]},{"@type":"WebSite","@id":"https:\/\/andreitupits23.thkit.ee\/WP\/#website","url":"https:\/\/andreitupits23.thkit.ee\/WP\/","name":"\/ &Otilde;pimapp \/ Portfoolio","description":"Welcome to my WP page.","publisher":{"@id":"https:\/\/andreitupits23.thkit.ee\/WP\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/andreitupits23.thkit.ee\/WP\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/andreitupits23.thkit.ee\/WP\/#organization","name":"\/ &Otilde;pimapp \/ Portfoolio","url":"https:\/\/andreitupits23.thkit.ee\/WP\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/andreitupits23.thkit.ee\/WP\/#\/schema\/logo\/image\/","url":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/03\/cropped-logo.png","contentUrl":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-content\/uploads\/2024\/03\/cropped-logo.png","width":240,"height":240,"caption":"\/ &Otilde;pimapp \/ Portfoolio"},"image":{"@id":"https:\/\/andreitupits23.thkit.ee\/WP\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/pages\/818","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/comments?post=818"}],"version-history":[{"count":2,"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/pages\/818\/revisions"}],"predecessor-version":[{"id":825,"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/pages\/818\/revisions\/825"}],"wp:attachment":[{"href":"https:\/\/andreitupits23.thkit.ee\/WP\/wp-json\/wp\/v2\/media?parent=818"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}