{"id":1077,"date":"2025-09-07T17:04:30","date_gmt":"2025-09-07T15:04:30","guid":{"rendered":"https:\/\/thegreydiamond.de\/blog\/?p=1077"},"modified":"2025-09-08T15:18:35","modified_gmt":"2025-09-08T13:18:35","slug":"just-another-bindicator","status":"publish","type":"post","link":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/","title":{"rendered":"Just another Bindicator"},"content":{"rendered":"\n<p>While mindlessly scrolling Reddit, I found a project on the <a href=\"https:\/\/www.reddit.com\/r\/homeassistant\">r\/homeassistant <\/a>subreddit which piqued my interest. A <a href=\"https:\/\/www.reddit.com\/r\/homeassistant\/comments\/1mi6xne\/ah_recycling_is_this_week\/\">bin indicator<\/a> (or indicator for short) that lit up a miniature wheelie bin whenever it is time to take out the trash. Taking inspiration from Dean Fourie&#8217;s <a class=\"dracula-style-link dracula-style-txt-border dracula-processed\" data-dracula_alpha_bg=\"rgba(0, 0, 0, 0)\" data-dracula_preserved_classes=\"dracula-style-txt-border dracula-style-link dracula-processed\" href=\"https:\/\/deanfourie.me\/bindicator\/\">Bindicator<\/a> I set out to make my one.<\/p>\n\n\n\n<p>The very first step was to find a wheelie bin model I liked. After scouring platforms like Thingiverse and Makerworld, I settled on <a href=\"https:\/\/makerworld.com\/de\/models\/18784-trash-bin-german\">this model<\/a> by &#8220;JAV-3D&#8221; as it resembled our bins the most. I&#8217;ve printed it on my Bambu Labs A1 using white silk filament.<\/p>\n\n\n\n<p>Using the basic tools BambuStudio provides, I added a hole for the USB-C plug to fit through as a last-minute addition.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7088_off_1-1024x683.webp\" alt=\"\" class=\"wp-image-1130\" srcset=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7088_off_1-1024x683.webp 1024w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7088_off_1-300x200.webp 300w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7088_off_1-768x512.webp 768w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7088_off_1-1536x1024.webp 1536w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7088_off_1-2048x1365.webp 2048w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7088_off_1-676x451.webp 676w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Brainnnsss&#8230;<\/h2>\n\n\n\n<p>Next came the more interesting part, the heart and soul of this project: the electronics! I&#8217;ve opted to use an ESP32-S3-Zero made by Waveshare for two reasons:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>I had it lying around<\/li>\n\n\n\n<li>It features an integrated WS2812 pixel<\/li>\n<\/ul>\n\n\n\n<p>This reduced the amount of extra hardware I needed. The only other thing I added was a bit of enamelled copper wire to GPIO 5. This will serve as a touch button which works through the lid of the bin. When you tap the top, the light will dim down to show that you have &#8220;acknowledged&#8221; the notification (aka you brought the trash out).<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"990\" height=\"1024\" src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/bin_inside-1-990x1024.jpg\" alt=\"\" class=\"wp-image-1113\" srcset=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/bin_inside-1-990x1024.jpg 990w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/bin_inside-1-290x300.jpg 290w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/bin_inside-1-768x795.jpg 768w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/bin_inside-1-1485x1536.jpg 1485w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/bin_inside-1-676x699.jpg 676w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/bin_inside-1.jpg 1848w\" sizes=\"auto, (max-width: 990px) 100vw, 990px\" \/><\/figure>\n\n\n\n<p>As I&#8217;m already actively using Home Assistant for my smart home, it made sense to opt for ESPHome as my firmware base. I used the online tool for <a href=\"https:\/\/web.esphome.io\/\">flashing ESPHome<\/a>. and commissioned it into my network. The configuration is fairly straightforward:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"yaml\" class=\"language-yaml\">esphome:\n  name: esphome-bindicator\n  friendly_name: ESPHome Web - Bindicator\n  min_version: 2025.5.0\n  name_add_mac_suffix: false\n\nesp32:\n  board: esp32-s3-devkitc-1\n  framework:\n    type: esp-idf\n\n# Enable logging\nlogger:\n\n# Enable Home Assistant API\napi:\n\n# Allow Over-The-Air updates\nota:\n- platform: esphome\n\nweb_server:\n  port: 80\n\nwifi:\n  ssid: !secret wifi_ssid\n  password: !secret wifi_password\n\n  # Enable fallback hotspot if WiFi connection fails\n  ap:\n\nlight:\n  - platform: esp32_rmt_led_strip\n    rgb_order: RGB\n    pin: GPIO21\n    num_leds: 1\n    chipset: ws2812\n    name: \"Binlight\"\n    id: \"binlight\"\n    effects:\n    - pulse:\n        name: \"Blink Fast\"\n        transition_length: 250ms\n        update_interval: 250ms\n        min_brightness: 8%\n        max_brightness: 100%\n\n    - pulse:\n        name: \"Blink Slow\"\n        transition_length: 2s\n        update_interval: 2s\n        min_brightness: 40%\n        max_brightness: 100%\n\nesp32_touch:\n  setup_mode: false\n  measurement_duration: 0.25ms  # Much lower than the 8ms default\n  sleep_duration: 0.5ms\n\nbinary_sensor:\n  - platform: esp32_touch\n    name: \"Binlight Ack Btn\"\n    pin: GPIO5\n    threshold: 1000<\/code><\/pre>\n\n\n\n<p>This config uses the <code>esp32_rmt_led_strip<\/code> component to drive the pixel internally connected to GPIO21, and adds two effects. It also initialises the touch component. If you use a different ESP32 board, I recommend you check the <a href=\"https:\/\/esphome.io\/components\/binary_sensor\/esp32_touch\/\">touch component documentation<\/a>. I needed to change some values for it to work at all.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Home Assistant Integration<\/h3>\n\n\n\n<p>Now, only one component was missing: The collection schedule data. My local waste collection company is supported by the awesome <a href=\"https:\/\/github.com\/mampfes\/hacs_waste_collection_schedule\">&#8220;Waste Collection Schedule&#8221;<\/a> integration for Home Assistant. I only care about two kinds of garbage: paper and packaging (&#8220;gelber sack&#8221; = &#8220;yellow trash&#8221; in German). For each, I configured a sensor with this config:<\/p>\n\n\n\n<p><strong class=\"dracula-style-txt-border dracula-processed\" data-dracula_alpha_bg=\"rgba(0, 0, 0, 0)\" data-dracula_preserved_classes=\"dracula-style-txt-border dracula-processed\">Format<\/strong>: Next<br><strong class=\"dracula-style-txt-border dracula-processed\" data-dracula_alpha_bg=\"rgba(0, 0, 0, 0)\">Value Template<\/strong>: <code class=\"dracula-style-txt-border dracula-processed\" data-dracula_alpha_bg=\"rgba(0, 0, 0, 0)\">{{value.daysTo}}<\/code><br><strong class=\"dracula-style-txt-border dracula-processed\" data-dracula_alpha_bg=\"rgba(0, 0, 0, 0)\">Type<\/strong>: &#8220;Papierabfall&#8221; (or whatever you want)<\/p>\n\n\n\n<p>Last but not least, I created a new automation. My triggers were quite simple:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"692\" height=\"231\" src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-20-31-1f3a3414-6919-4c6c-ac7d-87b4eec232f0.png\" alt=\"\" class=\"wp-image-1078\" srcset=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-20-31-1f3a3414-6919-4c6c-ac7d-87b4eec232f0.png 692w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-20-31-1f3a3414-6919-4c6c-ac7d-87b4eec232f0-300x100.png 300w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-20-31-1f3a3414-6919-4c6c-ac7d-87b4eec232f0-676x226.png 676w\" sizes=\"auto, (max-width: 692px) 100vw, 692px\" \/><\/figure>\n\n\n\n<p>Two time triggers (&#8220;update&#8221; times) and a trigger for handling the acknowledgement.<\/p>\n\n\n\n<p>The logic was a little more complex. When it is time to update the state, I check which trash type is next (or if both fall on the same day) and turn on the light accordingly. If both types are more than 2 days away, the light gets simply switched off.<\/p>\n\n\n\n<p>When the touch button gets triggered, I dim the indicator to 30% (only if it was on in the first place)<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"853\" height=\"1017\" src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-22-14-f5919baf-3acc-49e1-a5ec-293038ceee20.png\" alt=\"\" class=\"wp-image-1079\" srcset=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-22-14-f5919baf-3acc-49e1-a5ec-293038ceee20.png 853w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-22-14-f5919baf-3acc-49e1-a5ec-293038ceee20-252x300.png 252w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-22-14-f5919baf-3acc-49e1-a5ec-293038ceee20-768x916.png 768w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/2025-09-06_15-22-14-f5919baf-3acc-49e1-a5ec-293038ceee20-676x806.png 676w\" sizes=\"auto, (max-width: 853px) 100vw, 853px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Final result<\/h2>\n\n\n\n<p>After an afternoon of tinkering, I was happy with my result. Let me know down in the comments if you have something similar for your smart home! Now enjoy a few photos and a video demo of the final result:<\/p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_on_blue-1024x683.webp\" alt=\"\" class=\"wp-image-1132\" srcset=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_on_blue-1024x683.webp 1024w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_on_blue-300x200.webp 300w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_on_blue-768x512.webp 768w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_on_blue-1536x1024.webp 1536w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_on_blue-2048x1365.webp 2048w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_on_blue-676x451.webp 676w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<figure class=\"wp-block-video\"><video height=\"1080\" style=\"aspect-ratio: 1920 \/ 1080;\" width=\"1920\" controls src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/blog-export-bindicator.mp4\"><\/video><\/figure>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about my Smarthome projects<\/h2>\n\n\n\n\t\t\t<div class=\"wp-block-uagb-post-grid uagb-post-grid  uagb-post__image-position-top uagb-post__image-enabled uagb-block-f9998fc3     uagb-post__items uagb-post__columns-3 is-grid uagb-post__columns-tablet-2 uagb-post__columns-mobile-1 uagb-post__equal-height\" data-total=\"2\" style=\"\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\" class='uagb-image-ratio-inherit'><img loading=\"lazy\" decoding=\"async\" width=\"676\" height=\"451\" src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-1024x683.webp\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-1024x683.webp 1024w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-300x200.webp 300w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-768x512.webp 768w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-1536x1024.webp 1536w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-2048x1365.webp 2048w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-676x451.webp 676w\" sizes=\"auto, (max-width: 676px) 100vw, 676px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Just another Bindicator<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2025-09-07T17:04:30+02:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\tSeptember 7, 2025\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo Comments\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\tEveryone forgets to put the trash out sometimes. But now it&#8217;s a thing of the&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Read More<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<div class='uagb-post__image'>\n\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2025\/07\/03\/how-to-open-an-axis-m1145-l-cctv-camera\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\" class='uagb-image-ratio-inherit'><img loading=\"lazy\" decoding=\"async\" width=\"676\" height=\"457\" src=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/07\/axisThumbnail-1024x693.png\" class=\"attachment-large size-large\" alt=\"\" srcset=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/07\/axisThumbnail-1024x693.png 1024w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/07\/axisThumbnail-300x203.png 300w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/07\/axisThumbnail-768x519.png 768w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/07\/axisThumbnail-1536x1039.png 1536w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/07\/axisThumbnail-2048x1385.png 2048w, https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/07\/axisThumbnail-676x457.png 676w\" sizes=\"auto, (max-width: 676px) 100vw, 676px\" \/>\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2025\/07\/03\/how-to-open-an-axis-m1145-l-cctv-camera\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">How to open an AXIS M1145-L CCTV camera<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2025-07-03T21:24:40+02:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\tJuly 3, 2025\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo Comments\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>In this short post I want to share a few photos and tips on how&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/thegreydiamond.de\/blog\/2025\/07\/03\/how-to-open-an-axis-m1145-l-cctv-camera\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Read More<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2022\/10\/10\/reverse-engineering-moonside-lighthouse\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Reverse engineering a Moonside Lighthouse Light<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2022-10-10T21:17:41+02:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\tOctober 10, 2022\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\t4 Comments\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>Working in ProgressThis article is still a work in progress, which means it will be&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/thegreydiamond.de\/blog\/2022\/10\/10\/reverse-engineering-moonside-lighthouse\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Read More<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2021\/09\/24\/sending-receiving-and-verifying-messages-sent-over-lora-using-rfm95w\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Sending, Receiving and verifying messages sent over LoRa using RFM95W<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2021-09-24T17:40:15+02:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\tSeptember 24, 2021\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\tNo Comments\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\tToday, I will be using an RFM95W LoRa chip together with an ESP8266\/ESP32 to transmit&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/thegreydiamond.de\/blog\/2021\/09\/24\/sending-receiving-and-verifying-messages-sent-over-lora-using-rfm95w\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Read More<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2021\/09\/23\/getting-started-with-rfm95w-lora-and-esp8266\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Getting started with RFM95W, LoRa and ESP8266<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2021-09-23T20:02:05+02:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\tSeptember 23, 2021\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\t2 Comments\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\tIn this blog post I will be introducing you to LoRa using the RFM95W module&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/thegreydiamond.de\/blog\/2021\/09\/23\/getting-started-with-rfm95w-lora-and-esp8266\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Read More<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<article class=\"uagb-post__inner-wrap\">\t\t\t\t\t\t\t\t<h4 class=\"uagb-post__title uagb-post__text\">\n\t\t\t\t<a href=\"https:\/\/thegreydiamond.de\/blog\/2021\/09\/21\/getting-started-with-rfm95w-lora-and-esp32\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Getting started with RFM95W, LoRa and ESP32<\/a>\n\t\t\t<\/h4>\n\t\t\t\t\t\t<div class='uagb-post__text uagb-post-grid-byline'>\n\t\t\t\t\t\t\t\t<time datetime=\"2021-09-21T11:04:36+02:00\" class=\"uagb-post__date\">\n\t\t\t\t<span class=\"dashicons-calendar dashicons\"><\/span>\t\t\t\t\tSeptember 21, 2021\t\t\t\t<\/time>\n\t\t\t\t\t\t\t<span class=\"uagb-post__comment\">\n\t\t\t\t<span class=\"dashicons-admin-comments dashicons\"><\/span>\t\t\t\t\t2 Comments\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class='uagb-post__text uagb-post__excerpt'>\n\t\t\t\t\t<p>In this blog post I will be introducing you to LoRa using the RFM95W module&#8230;\t\t\t\t<\/div>\n\t\t\t\t\t\t<div class=\"uagb-post__text uagb-post__cta wp-block-button\">\n\t\t\t\t<a class=\"wp-block-button__link uagb-text-link\" style=\"\" href=\"https:\/\/thegreydiamond.de\/blog\/2021\/09\/21\/getting-started-with-rfm95w-lora-and-esp32\/\" target=\"_self\" rel=\"bookmark noopener noreferrer\">Read More<\/a>\n\t\t\t<\/div>\n\t\t\t\n\t\t\t\t\t\t\t\t\t<\/article>\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>Everyone forgets to put the trash out sometimes. But now it&#8217;s a thing of the past! This is another take on Dean Fourie&#8217;s bindicator with a little twist.<\/p>\n","protected":false},"author":2,"featured_media":1134,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","footnotes":""},"categories":[1],"tags":[4,5,68,7,8],"class_list":["post-1077","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-arduino","tag-diy","tag-esp32","tag-iot","tag-smarthome","post-preview"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Just another Bindicator &#8211; Thegreydiamond<\/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:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Just another Bindicator &#8211; Thegreydiamond\" \/>\n<meta property=\"og:description\" content=\"Everyone forgets to put the trash out sometimes. But now it&#039;s a thing of the past! This is another take on Dean Fourie&#039;s bindicator with a little twist.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/\" \/>\n<meta property=\"og:site_name\" content=\"Thegreydiamond\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-07T15:04:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-08T13:18:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-scaled.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1707\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"TheGreydiamond\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@thegreydiamond2\" \/>\n<meta name=\"twitter:site\" content=\"@thegreydiamond2\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TheGreydiamond\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/\"},\"author\":{\"name\":\"TheGreydiamond\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#\\\/schema\\\/person\\\/a7ba7a2ca50e4001f3f8f852c079910d\"},\"headline\":\"Just another Bindicator\",\"datePublished\":\"2025-09-07T15:04:30+00:00\",\"dateModified\":\"2025-09-08T13:18:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/\"},\"wordCount\":533,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/IMG_7091_cover_image-scaled.webp\",\"keywords\":[\"arduino\",\"DIY\",\"esp32\",\"iot\",\"smarthome\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/\",\"url\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/\",\"name\":\"Just another Bindicator &#8211; Thegreydiamond\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/IMG_7091_cover_image-scaled.webp\",\"datePublished\":\"2025-09-07T15:04:30+00:00\",\"dateModified\":\"2025-09-08T13:18:35+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#primaryimage\",\"url\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/IMG_7091_cover_image-scaled.webp\",\"contentUrl\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/IMG_7091_cover_image-scaled.webp\",\"width\":2560,\"height\":1707},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/2025\\\/09\\\/07\\\/just-another-bindicator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Just another Bindicator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/\",\"name\":\"Thegreydiamond\",\"description\":\"TheGreydiamonds Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#organization\",\"name\":\"TheGreydiamond\",\"url\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/logoVersuch2.png\",\"contentUrl\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/logoVersuch2.png\",\"width\":1000,\"height\":1000,\"caption\":\"TheGreydiamond\"},\"image\":{\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/thegreydiamond2\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/thegreydiamond.de\\\/blog\\\/#\\\/schema\\\/person\\\/a7ba7a2ca50e4001f3f8f852c079910d\",\"name\":\"TheGreydiamond\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/55ee91221a0c102f9e4fa464a2edf06cc82724dc4f1299c99818b23e45801a75?s=96&d=mm&r=pg\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/55ee91221a0c102f9e4fa464a2edf06cc82724dc4f1299c99818b23e45801a75?s=96&d=mm&r=pg\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/55ee91221a0c102f9e4fa464a2edf06cc82724dc4f1299c99818b23e45801a75?s=96&d=mm&r=pg\",\"caption\":\"TheGreydiamond\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Just another Bindicator &#8211; Thegreydiamond","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:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/","og_locale":"en_US","og_type":"article","og_title":"Just another Bindicator &#8211; Thegreydiamond","og_description":"Everyone forgets to put the trash out sometimes. But now it's a thing of the past! This is another take on Dean Fourie's bindicator with a little twist.","og_url":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/","og_site_name":"Thegreydiamond","article_published_time":"2025-09-07T15:04:30+00:00","article_modified_time":"2025-09-08T13:18:35+00:00","og_image":[{"width":2560,"height":1707,"url":"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-scaled.webp","type":"image\/webp"}],"author":"TheGreydiamond","twitter_card":"summary_large_image","twitter_creator":"@thegreydiamond2","twitter_site":"@thegreydiamond2","twitter_misc":{"Written by":"TheGreydiamond","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#article","isPartOf":{"@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/"},"author":{"name":"TheGreydiamond","@id":"https:\/\/thegreydiamond.de\/blog\/#\/schema\/person\/a7ba7a2ca50e4001f3f8f852c079910d"},"headline":"Just another Bindicator","datePublished":"2025-09-07T15:04:30+00:00","dateModified":"2025-09-08T13:18:35+00:00","mainEntityOfPage":{"@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/"},"wordCount":533,"commentCount":0,"publisher":{"@id":"https:\/\/thegreydiamond.de\/blog\/#organization"},"image":{"@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#primaryimage"},"thumbnailUrl":"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-scaled.webp","keywords":["arduino","DIY","esp32","iot","smarthome"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/","url":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/","name":"Just another Bindicator &#8211; Thegreydiamond","isPartOf":{"@id":"https:\/\/thegreydiamond.de\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#primaryimage"},"image":{"@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#primaryimage"},"thumbnailUrl":"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-scaled.webp","datePublished":"2025-09-07T15:04:30+00:00","dateModified":"2025-09-08T13:18:35+00:00","breadcrumb":{"@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#primaryimage","url":"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-scaled.webp","contentUrl":"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-scaled.webp","width":2560,"height":1707},{"@type":"BreadcrumbList","@id":"https:\/\/thegreydiamond.de\/blog\/2025\/09\/07\/just-another-bindicator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thegreydiamond.de\/blog\/"},{"@type":"ListItem","position":2,"name":"Just another Bindicator"}]},{"@type":"WebSite","@id":"https:\/\/thegreydiamond.de\/blog\/#website","url":"https:\/\/thegreydiamond.de\/blog\/","name":"Thegreydiamond","description":"TheGreydiamonds Blog","publisher":{"@id":"https:\/\/thegreydiamond.de\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thegreydiamond.de\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/thegreydiamond.de\/blog\/#organization","name":"TheGreydiamond","url":"https:\/\/thegreydiamond.de\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thegreydiamond.de\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2021\/09\/logoVersuch2.png","contentUrl":"https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2021\/09\/logoVersuch2.png","width":1000,"height":1000,"caption":"TheGreydiamond"},"image":{"@id":"https:\/\/thegreydiamond.de\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/thegreydiamond2"]},{"@type":"Person","@id":"https:\/\/thegreydiamond.de\/blog\/#\/schema\/person\/a7ba7a2ca50e4001f3f8f852c079910d","name":"TheGreydiamond","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/55ee91221a0c102f9e4fa464a2edf06cc82724dc4f1299c99818b23e45801a75?s=96&d=mm&r=pg","url":"https:\/\/secure.gravatar.com\/avatar\/55ee91221a0c102f9e4fa464a2edf06cc82724dc4f1299c99818b23e45801a75?s=96&d=mm&r=pg","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/55ee91221a0c102f9e4fa464a2edf06cc82724dc4f1299c99818b23e45801a75?s=96&d=mm&r=pg","caption":"TheGreydiamond"}}]}},"uagb_featured_image_src":{"full":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-scaled.webp",2560,1707,false],"thumbnail":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-150x150.webp",150,150,true],"medium":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-300x200.webp",300,200,true],"medium_large":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-768x512.webp",676,451,true],"large":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-1024x683.webp",676,451,true],"1536x1536":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-1536x1024.webp",1536,1024,true],"2048x2048":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-2048x1365.webp",2048,1365,true],"post-image":["https:\/\/thegreydiamond.de\/blog\/wp-content\/uploads\/2025\/09\/IMG_7091_cover_image-676x451.webp",676,451,true]},"uagb_author_info":{"display_name":"TheGreydiamond","author_link":"https:\/\/thegreydiamond.de\/blog\/author\/thegreydiamond\/"},"uagb_comment_info":0,"uagb_excerpt":"Everyone forgets to put the trash out sometimes. But now it's a thing of the past! This is another take on Dean Fourie's bindicator with a little twist.","_links":{"self":[{"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/posts\/1077","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/comments?post=1077"}],"version-history":[{"count":14,"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/posts\/1077\/revisions"}],"predecessor-version":[{"id":1135,"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/posts\/1077\/revisions\/1135"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/media\/1134"}],"wp:attachment":[{"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/media?parent=1077"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/categories?post=1077"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thegreydiamond.de\/blog\/wp-json\/wp\/v2\/tags?post=1077"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}