Page 6 of 50
Re: Dashticz - Show your dashboard and how-to's!
Posted: Tuesday 09 May 2017 8:05
by michaldobrotka
My solution for removable Tablet wall-mount - hook and loop band with adhesive.
Re: Show your Dashticz v2.0 and how-to's!
Posted: Tuesday 09 May 2017 11:45
by pvdhelm
htilburgs wrote:Nice attempt....
If you like the + and - button from the thermostaat less visible, then you can use this code (I've used this for the Roller Shutter), if they use the same framesettings (.input-groupBtn.input-chevron .btn-number)
Code: Select all
/* Transparent Background for arrow Blinds - Big Screen */
.input-groupBtn.input-chevron .btn-number {
padding: 5px 10px 5px 10px;
background-color: transparent;
}
/* Transparent Background for arrow Blinds - Small Screen */
@media only screen and (max-width: 1400px) {
.input-groupBtn.input-chevron .btn-number {
padding: 7px 10px 7px 10px;
background-color: transparent;
}
}
Where do i place this code in cusom.css??
Re: Dashticz - Show your dashboard and how-to's!
Posted: Tuesday 09 May 2017 12:54
by htilburgs
Anywhere you like
It shouldn't matter as long as it's in there....
Re: Dashticz - Show your dashboard and how-to's!
Posted: Tuesday 09 May 2017 15:03
by pvdhelm
it doesnt work here don't see any difference
- temp.png (44.3 KiB) Viewed 4413 times
Re: Dashticz - Show your dashboard and how-to's!
Posted: Tuesday 09 May 2017 15:45
by htilburgs
Problem is I don't have such a device, so I cannot test.
Let me think. I come back to you, at work right now
Re: Dashticz - Show your dashboard and how-to's!
Posted: Tuesday 09 May 2017 18:52
by vgr2
Hi blacksn0w, could you share your code? I would like also to integrate my local public provider (Stuttgart)
Re: Show your Dashticz v2.0 and how-to's!
Posted: Thursday 11 May 2017 16:51
by pkrabben
Blueone wrote:Put the tablet to the wall this weekend
. I'm using a zenpad 8.0 with a xvida qi charger and some adjusted xvida mounts. Working quite good actually
. It is using magnets and I can remove it very easily.
IMG_1866 - Copy.JPG
IMG_1865 - Copy.JPG
IMG_1867 - Copy.JPG
Hi Blueone
Do you have some links or shops for me where you bought the mount and the wireless charger?
Thanks in advance for your reply.
Re: Dashticz - Show your dashboard and how-to's!
Posted: Thursday 11 May 2017 21:41
by Blueone
For the people who want to suppress the alert window without editing main.js can put this line in their custom.js:
Code: Select all
window.alert = function ( text ) { console.error( text ); return true; };
I bought the charger at xvida, not cheap but the quallity is oke:
https://www.xvida.com/collections/charg ... ntable-pad
Re: Dashticz - Show your dashboard and how-to's!
Posted: Saturday 13 May 2017 10:48
by capman
Re: Dashticz - Show your dashboard and how-to's!
Posted: Saturday 13 May 2017 12:21
by wizjos
capman wrote:Some picture of my Dashticz project , in my kitchen , so far
Looks great... But what's all that hardware and what screen did you use?
Wizjos
Re: Dashticz - Show your dashboard and how-to's!
Posted: Saturday 13 May 2017 12:28
by EdwinK
capman wrote:Some picture of my Dashticz project , in my kitchen , so far
Neat
Re: Dashticz - Show your dashboard and how-to's!
Posted: Saturday 13 May 2017 12:32
by mAiden88
wizjos wrote:capman wrote:Some picture of my Dashticz project , in my kitchen , so far
Looks great... But what's all that hardware and what screen did you use?
Wizjos
I see a PI, arduino uno ? All of the rest i dont know, hahaha.
Re: Dashticz - Show your dashboard and how-to's!
Posted: Saturday 13 May 2017 12:37
by Ierlandfan
That looks like a Raspberry Pi with a external board to hook up about any screen you can find. On the outer left there's the backlight pcb for the screen. The led board is unknown but next to it is the pcb for the toucscreen.
Re: Dashticz - Show your dashboard and how-to's!
Posted: Saturday 13 May 2017 13:34
by capman
Ierlandfan wrote:That looks like a Raspberry Pi with a external board to hook up about any screen you can find. On the outer left there's the backlight pcb for the screen. The led board is unknown but next to it is the pcb for the toucscreen.
That's right ! A use a raspberry pi 3 with debian jessie pixel. It have chromium browser installed as default. For the screen a use a laptop screen (17 inch) with a touchscreen before installed. A found the instructions on
http://www.instructables.com/id/Touchsc ... -Control-/ and
http://www.cnx-software.com/2016/02/05/ ... -computer/.
I want also one in my bathroom and bedroom. Also to control my multiroom music system. But that's in progress ... (
http://www.domoticz.com/forum/viewtopic ... 60#p134389
Re: Dashticz - Show your dashboard and how-to's!
Posted: Monday 15 May 2017 19:37
by EdwinK
By far not ready, but this has to do for now.
Re: Dashticz - Show your dashboard and how-to's!
Posted: Friday 19 May 2017 7:15
by htilburgs
pvdhelm wrote:it doesnt work here don't see any difference
temp.png
@pvdhelm, I've looked into this and can you try put this in your custom.css:
Code: Select all
/* Transparent background for buttons Thermostat */
.input-groupBtn .btn-number {
opacity: 0.5;
color: white;
background-color: rgb(34, 34, 34);
border-radius: 0px;
padding: 6px 10px 6px 10px;
line-height: 20px;
background-color: transparent;
}
Re: Dashticz - Show your dashboard and how-to's!
Posted: Friday 19 May 2017 18:22
by freakshock
My setup so far. It's a Nexus 10 tablet in a
3D printed wall mount.
- fotokast.jpg (156.31 KiB) Viewed 3759 times
Screenshot:
- Screenshotdash.jpg (232.67 KiB) Viewed 3759 times
Re: Dashticz - Show your dashboard and how-to's!
Posted: Friday 19 May 2017 18:35
by EdwinK
Nice...
Re: Dashticz - Show your dashboard and how-to's!
Posted: Friday 19 May 2017 21:29
by htilburgs
I'm trying to minimalize the dashboard, so no blocktitles and extra's. This is work in progress, but I like to share how it does look right now:
Re: Dashticz - Show your dashboard and how-to's!
Posted: Saturday 20 May 2017 7:58
by pvdhelm
Tnx @htilburgs
this works for me
htilburgs wrote:pvdhelm wrote:it doesnt work here don't see any difference
temp.png
@pvdhelm, I've looked into this and can you try put this in your custom.css:
Code: Select all
/* Transparent background for buttons Thermostat */
.input-groupBtn .btn-number {
opacity: 0.5;
color: white;
background-color: rgb(34, 34, 34);
border-radius: 0px;
padding: 6px 10px 6px 10px;
line-height: 20px;
background-color: transparent;
}