Hello, great work.
Is it possible to make a BACnet plugin ?
Search found 8 matches
- Monday 09 November 2020 20:27
- Forum: Python
- Topic: Python plugin: Modbus RTU / ASCII / TCP/IP
- Replies: 401
- Views: 143637
- Wednesday 22 January 2020 23:19
- Forum: Dashticz
- Topic: webpage on screens
- Replies: 1
- Views: 426
webpage on screens
I have made a button that links to a screen.
How to show a web page on that screen at full screen size
How to show a web page on that screen at full screen size
columns[1] = {}
columns[40]['blocks'] = [' web page ]
columns[40]['width'] = 12;
var screens = {}
screens[4] = {}
screens[4]['background'] = 'bg2.jpg';
screens[4]['columns'] = [40]
- Wednesday 22 January 2020 23:11
- Forum: Dashticz
- Topic: Xiaomi Robot Vacuum Cleaner Control
- Replies: 2
- Views: 366
Re: Xiaomi Robot Vacuum Cleaner Control
If you are using a rpi then ;
sudo nano /pi/Dashticz/dev/dashticz/css/creative.css
sudo nano /pi/Dashticz/dev/dashticz/css/creative.css
- Thursday 02 January 2020 12:50
- Forum: Dashticz
- Topic: Dashticz - Module - Garbage collector
- Replies: 959
- Views: 155152
Re: Dashticz - Module - Garbage collector
I have problems with the Garbage. When i set the complete address to Almere, it works. When i set it to twentemilieu i get nothing. /*Vuilnis Module */ config['dashticz_php_path']='./vendor/dashticz/'; config['garbage_company'] = 'twentemilieu'; config['garbage_icalurl'] = '0'; config['garbage ...
- Thursday 31 October 2019 16:35
- Forum: Dashticz
- Topic: Dashticz streamplayer set width
- Replies: 2
- Views: 374
Re: Dashticz streamplayer set width
I'll be patient
- Wednesday 30 October 2019 20:24
- Forum: Dashticz
- Topic: Dashticz streamplayer set width
- Replies: 2
- Views: 374
Dashticz streamplayer set width
How to set the streamplayer width to 6 in CONFIG.js
The column width is 12
The column width is 12
- Sunday 14 July 2019 9:24
- Forum: Python
- Topic: Python SyntaxError: invalid syntax
- Replies: 0
- Views: 585
Python SyntaxError: invalid syntax
I am trying to set a servo with domoticz . The script works when i set the hoek manualy. When i try to get the value from Domoticz i get syntax error. The link comes from https://www.domoticz.com/wiki/Mindergas.nl What am i doing wrong ? import json from jq import jq import RPi.GPIO as GPIO from ...
- Sunday 07 July 2019 22:29
- Forum: Python
- Topic: How to implement a value from domoticz in python script
- Replies: 0
- Views: 487
How to implement a value from domoticz in python script
I want to pwm a GPIO from a Raspberry pi with a Domoticz dimmer. I have a python code; import RPi.GPIO as GPIO # Importing RPi library to use the GPIO pins from time import sleep # Importing sleep from time library led_pin = 22 # Initializing the GPIO pin 22 for LED GPIO.setmode(GPIO.BCM) # We are ...