![]() |
|
QB64pe and Home Automation - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: Chatting and Socializing (https://qb64phoenix.com/forum/forumdisplay.php?fid=11) +--- Forum: General Discussion (https://qb64phoenix.com/forum/forumdisplay.php?fid=2) +--- Thread: QB64pe and Home Automation (/showthread.php?tid=4464) |
QB64pe and Home Automation - dano - 02-11-2026 Has anyone integrated QB64 with home automation controllers such as Hubitat, Home Assistant, etc? I am wanting to use QB64 as the heart of home automation using a touch panel because I can get exactly what I want instead of using what they have. I can also integrate other external programs that they currently are not allowing access to. RE: QB64pe and Home Automation - SpriggsySpriggs - 02-11-2026 I've never used those services but I imagine one could use their APIs quite easily. It's not too hard to set up in Windows but might be difficult in Linux, depending on API type. RE: QB64pe and Home Automation - dano - 02-12-2026 Did a bit of research and yes, you can control the Hubitat with QB64. In case if anyone else comes across this need, here are the basics. On your Hubitat you will need to load/enable the built-in app, Maker API. Generate a new token (shown in examples at bottom of page). Add the devices that you want to be controlled. Now simply talk to the device via http. Below is an example of the code to turn on a Zen74 Zwave module: Code: (Select All)
For me this is huge. This gives me the ability to do so much more since I can have QB64 running other tasks or even tasks that the Hubitat was not designed for. Hoping to have a touchscreen running all sorts of things soon !!! RE: QB64pe and Home Automation - mdijkens - 02-12-2026 I am using HA API's from QB64pe to export data |