This is super cool, and I wish something like this existed at my place, as it enables information sharing without the need for phones/actual screens that shine in your face when the lights are low or tempt you to doomscroll. That said, the large primary display this uses is $2000. That's very hard to justify for any "normal" household, and that's without any mounts, backend, services etc.
I built Timeframe, our family e-paper dashboard
31–40 of 385 posts
Re: I built Timeframe, our family e-paper dashboard
#32Re: I built Timeframe, our family e-paper dashboard
#33~3000€ to show information in some random places in the house even though the household members have a device with a screen called a smartphone next to them 24/7 ? Well, it's cool, but the usability of it all is below average. Declutter your life and don't install any more screens in your home ;)
Re: I built Timeframe, our family e-paper dashboard
#34~3000€ to show information in some random places in the house even though the household members have a device with a screen called a smartphone next to them 24/7 ? Well, it's cool, but the usability of it all is below average. Declutter your life and don't install any more screens in your home ;)
Alternative: just keep your phone on your charger in your room and declutter your life by using just the one screen in the kitchen.
Re: I built Timeframe, our family e-paper dashboard
#35Though, $2000 is a step price.
I had some fun with using an Inkplate e-ink display - bough a bare 5" for €74 (a 10" with batteries is there €219). Smaller, but also way more affordable.
It connects via WiFi, and make it display random, vide https://github.com/SolderedElectronics/Inkplate-Arduino-libr....
Re: I built Timeframe, our family e-paper dashboard
#36~3000€ to show information in some random places in the house even though the household members have a device with a screen called a smartphone next to them 24/7 ? Well, it's cool, but the usability of it all is below average. Declutter your life and don't install any more screens in your home ;)
Re: I built Timeframe, our family e-paper dashboard
#37I’m always surprised how much people seem to want to constantly know the weather.
Re: I built Timeframe, our family e-paper dashboard
#38I’m always surprised how much people seem to want to constantly know the weather.
Re: I built Timeframe, our family e-paper dashboard
#39This is cool. I bought an Inkplate for this and got as far as writing a custom image format suitable for e-ink sort of things (4-bit RLE; trivial to decode, but good compression for diagram/text type images). Where I got stuck is calendars... Unfortunately Google Calendar doesn't seem to provide a nice API where you can just say "give me the events for these days", instead you can only download all of your events in…
Something like:
```
function doGet(req) {
let start = new Date();
start.setHours(12,0,0,0);
let end = new Date(start);
end.setDate(end.getDate() + 3);
let events = CalendarApp.getEvents(start, end);
return ContentService.createTextOutput(events.map(x => x.getTitle()));
}```
Re: I built Timeframe, our family e-paper dashboard
#40This is awesome but I still find it funny that he said he wants a healthy relationship with technology then goes and fits his entire house out with technology. It doesnt seem like any of this would really be useful as you'd have to enter all the useful data manually(calendar). For example the washing machine. You dont need real time information because you know how long it takes since you've done it 1000s of times an…
It beeps, on the other end of the house (or on another floor), where it's inaudible. (And, thankfully, where the loud sounds of it operating are also inaudible.)
> All these things are just managed in our heads subconsciously.
And when you remove the need to track that in your head, your head gets freed up for other things.
To be explicit, I don't like "smart appliances" that connect to a cloud server. I do like the idea of devices that can connect locally to something like Home Assistant.