TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Easily connect your Arduino to your favorite internet apps

3 点作者 zciwor超过 1 年前
I&#x27;m building IFTT but for IoT devices. No monthly cost, just a one time deployment fee for the life of the device.<p>A simple MQTT interface to do all sorts of things such as: - Open a lock from a Stripe payment event - Upload images from your ESP32CAM to Google Drive - Trigger a custom email based on a high sensor reading - Log sensor readings to a Google Sheets document<p>Some other integrations that I have in progress: - Manage your Spotify listening session with your device (play &#x2F; pause &#x2F; next &#x2F; volume) - Slack integration to trigger a message to your device when a new message comes in - Google Calendar integration to trigger message when you have a meeting coming up<p>Does anyone have any other cool integration ideas they&#x27;ve been meaning to implement for their WiFi projects?

1 comment

spdustin大约 1 年前
So just to clarify, you&#x27;ve added an integration layer on top of MQTT so that MCUs can publish to a topic (for external actions) and subscribe to a topic (for MCU-driven actions)?<p>1. Do you have an &quot;unexpected exit&quot; strategy that would allow users to use their own broker, and self-host your integration layer?<p>2. How does the firmware&#x2F;infra currently handle failed connections to MQTT? Are you using LWT?<p>3. Are you using retained messages and&#x2F;or QoS to ensure subscribers understand the correct &quot;state of the world&quot; after a reconnection?<p>4. Does the MCU firmware support queueing messages on its own for delivery after a disconnection is resolved?