- My Forums
- Tiger Rant
- LSU Recruiting
- SEC Rant
- Saints Talk
- Pelicans Talk
- More Sports Board
- Fantasy Sports
- Golf Board
- Soccer Board
- O-T Lounge
- Tech Board
- Home/Garden Board
- Outdoor Board
- Health/Fitness Board
- Movie/TV Board
- Book Board
- Music Board
- Political Talk
- Money Talk
- Fark Board
- Gaming Board
- Travel Board
- Food/Drink Board
- Ticket Exchange
- TD Help Board
Customize My Forums- View All Forums
- Show Left Links
- Topic Sort Options
- Trending Topics
- Recent Topics
- Active Topics
Started By
Message
Posted on 6/16/26 at 9:31 pm to Dallaswho
I got my Beelink EQi12 mini pc in and ported the VM I was working off of over to it this past weekend. Here are some screen shots of the progress i've made on my tiles. I'm waiting to do real UI polish once the 43" touch screen gets here from China.
I put in a hidden control room where I can change settings directly from the touch screen (you have to tap settings 7 times rapidly, like android dev). In there I added a theming system to change the colors of the tiles. I added a chess board for my wife an I to play as we walk past. I'm proud of the thermostat graph that shows how often the ac runs with a percentage and shows the temp set vs actual house temp. Its a shame I cant test out the sports takeover bc LSU is at home. A storm did show up in the Atlantic today.

I put in a hidden control room where I can change settings directly from the touch screen (you have to tap settings 7 times rapidly, like android dev). In there I added a theming system to change the colors of the tiles. I added a chess board for my wife an I to play as we walk past. I'm proud of the thermostat graph that shows how often the ac runs with a percentage and shows the temp set vs actual house temp. Its a shame I cant test out the sports takeover bc LSU is at home. A storm did show up in the Atlantic today.

This post was edited on 6/16/26 at 9:37 pm
Posted on 6/16/26 at 10:43 pm to CAD703X
Here's a video of how it works.
This post was edited on 6/17/26 at 10:30 am
Posted on 6/16/26 at 11:12 pm to AaronDeTiger
Video is marked private.
Set it to unlisted instead and then I should be able to see it
Set it to unlisted instead and then I should be able to see it
Posted on 6/16/26 at 11:39 pm to AaronDeTiger
Wow that's amazing. Very unusual and very polished. Yes I watched all 3 minutes. You should be really proud of that. How long from initial planning to completion?
Wait maybe I don't want to know
How is the care and feeding? Pretty easy?
Wait maybe I don't want to know
How is the care and feeding? Pretty easy?
Posted on 6/17/26 at 8:13 am to CAD703X
What do you mean by care and feeding?
Posted on 6/17/26 at 9:10 am to AaronDeTiger
quote:adding new panels, fixing crashing issues, handling problems when updates to HA or one of the 2 zillion HACS add-ons breaks or is no longer supported, etc.
What do you mean by care and feeding?
eta TOTALLY missed the chess game panel
you seriously have a chess game going?
AI or playing against a friend remotely?
This post was edited on 6/17/26 at 9:11 am
Posted on 6/17/26 at 9:25 am to AaronDeTiger
i'm so inspired by your game.
now i want a 'long playing' game of some sort to display (even if not live) because i dont get to see my grown kids that often so playing a game with them online is one way we connect.
now i just need to find a good phone game like chess that can run for days/weeks and use this as a reminder when its my move
now i want a 'long playing' game of some sort to display (even if not live) because i dont get to see my grown kids that often so playing a game with them online is one way we connect.
now i just need to find a good phone game like chess that can run for days/weeks and use this as a reminder when its my move
Posted on 6/17/26 at 9:25 am to CAD703X
stockfish when vs pc, but can have a running 2 player game going. I'm also building a bridge builder physics type game. I think it'll be fun on the touch screen.
Posted on 6/17/26 at 9:30 am to AaronDeTiger
i'm going to use your prompts for my friend's HA setup and hopefully it will be a much smoother process than mine. remind me what model you are using that has worked so well.
since this is new and he already thinks i'm Gandalf, he will buy whatever subscription i tell him to
Posted on 6/17/26 at 9:38 am to CAD703X
quote:
adding new panels, fixing crashing issues, handling problems when updates to HA or one of the 2 zillion HACS add-ons breaks or is no longer supported, etc.
It's all one custom Lovelace card in its own shadow DOM and CSS. HA hands it all the info, but it handles all theming, animations, layout.
Each tile is one self-contained file listed in a registry and the engine picks it up. I don't touch the layout, animation, or other tiles.
Crashes stay contained. the card's walled off in its own bubble, so a bad tile can't take down HA. Worst case one tile renders blank, I fix that file and refresh.
I don't use any community cards, so almost nothing in the render path can go stale. My only real exposure is go2rtc + the WebRTC card, and the integrations feeding data. If one changes how it reports state, I tweak the one tile that reads it.
Every tile reads its data through one step and writes through one shared dispatch call, so if HA renames a service or an integration changes how it reports state, the fix is one line in that one tile's file
This post was edited on 6/17/26 at 9:56 am
Posted on 6/17/26 at 9:56 am to CAD703X
I use Claude Opus 4.8
What I do is start a conversation with it telling i want to spec out something on the dashboard. And we flesh the whole thing out and at the end, i have it generate a markdown file with everything we decided on.
Then, i start a new chat to have fresh/full context and tell it to execute the spec. I used to keep all the spec files in the project files and had to manually swap them out after updates, but now i have claude tied to my github and he updates everything. The specs include a development roadmap that he updates. So i literally start a chat and say, "whats next" and he displays the table with progress and i tell it what to execute. When he's done, i say "close out" and he updates the specs and commit/push to github. Between that we iterate. If a layout is fricked up i screen shot and tell him what to change or if something isnt working i open the web console and copy paste errors and he figures out the problem, usually on the first time. He can also read logs in HA vie the HA-MCP connector in claude.
When i get home, i can strip personal data from my specs and get them to you so you have an idea of the structure. I'm excited to see what you come up with.
What I do is start a conversation with it telling i want to spec out something on the dashboard. And we flesh the whole thing out and at the end, i have it generate a markdown file with everything we decided on.
Then, i start a new chat to have fresh/full context and tell it to execute the spec. I used to keep all the spec files in the project files and had to manually swap them out after updates, but now i have claude tied to my github and he updates everything. The specs include a development roadmap that he updates. So i literally start a chat and say, "whats next" and he displays the table with progress and i tell it what to execute. When he's done, i say "close out" and he updates the specs and commit/push to github. Between that we iterate. If a layout is fricked up i screen shot and tell him what to change or if something isnt working i open the web console and copy paste errors and he figures out the problem, usually on the first time. He can also read logs in HA vie the HA-MCP connector in claude.
When i get home, i can strip personal data from my specs and get them to you so you have an idea of the structure. I'm excited to see what you come up with.
This post was edited on 6/17/26 at 10:01 am
Posted on 6/17/26 at 9:56 am to AaronDeTiger
nice. didnt you say earlier in this thread you have an engineering background?
i'm adding a clock to my bar display (how did i go for 3 months not noticing there wasn't a clock on it?)
also pulling in "National Day of..." now to my morning dash so i can spout off that little nugget on my daily Teams morning call.
i'm adding a clock to my bar display (how did i go for 3 months not noticing there wasn't a clock on it?)
also pulling in "National Day of..." now to my morning dash so i can spout off that little nugget on my daily Teams morning call.
Posted on 6/17/26 at 10:03 am to CAD703X
quote:
didnt you say earlier in this thread you have an engineering background?
Im a lowly project manager for a refractory company nested in an oil refinery. AI is just fun to frick with. I cut my teeth on it and developed my system on an android app im about 90% done with. I still need to finish that
Posted on 6/17/26 at 10:40 am to AaronDeTiger
i'm '' <-- this close to scrapping everything i've done and starting over with this holistic overview.
maybe i'll use my friend as a guinea pig
and see what falls out along the way. i am in no way tied to the 'look and feel' of my current setup and now that i feel way more confident AI can handle things; i want to redo everything and get the code into a management state, reusable template paradigm, ..all the things.
what i have now looks purty but its ugly behind the scenes and i'll probably hate myself in a year if i dont fix it the right way and take advantage of github, etc.
this isn't eay for an old cobol and pascal programmer.
the last real 'coding' i did was scripting in macromedia director & Flash and when those were relegated to the dustbin of history, it made me sad and i stopped keeping up with new coding paradigms. just lacked the energy..
but now...its hard to make that excuse; AI is giving me the blueprint so all i need to do is fake it til i make it
maybe i'll use my friend as a guinea pig
what i have now looks purty but its ugly behind the scenes and i'll probably hate myself in a year if i dont fix it the right way and take advantage of github, etc.
this isn't eay for an old cobol and pascal programmer.
but now...its hard to make that excuse; AI is giving me the blueprint so all i need to do is fake it til i make it
Posted on 6/17/26 at 12:34 pm to CAD703X
If I can do it, I know you can probably build something better structured.
Here are the SPECIFICATIONS
Read the README!!!
When you get all set up, just drop all that in the chat or project and tell it you want to generate your own specs using that system but the UI is themed not as Windows Phone Metro, but as XYZ/iPhone liquid glass/android material you/mac OS/etc.
Here are the SPECIFICATIONS
Read the README!!!
When you get all set up, just drop all that in the chat or project and tell it you want to generate your own specs using that system but the UI is themed not as Windows Phone Metro, but as XYZ/iPhone liquid glass/android material you/mac OS/etc.
This post was edited on 6/17/26 at 12:36 pm
Posted on 6/17/26 at 1:22 pm to AaronDeTiger
leaving in a couple hours for vacation; not sure if the wife is going to let me study this while we're sitting on the beach
so if you could leave it up for a bit, i'll definitely check into it.
Popular
Back to top


1




