Dashticz V2 - Installation:修订间差异

来自Domoticz
无编辑摘要
无编辑摘要
第1行: 第1行:
安装 Dashticz v2.0,从 Github 上下载 Dashticz V2 的最新版本(https://github.com/robgeerts/dashticz_v2).  
安装 Dashticz v2.0,从 Github 上下载 Dashticz V2 的最新版本(https://github.com/robgeerts/dashticz_v2).  
在 domoticz\www\<subfolder> 创建一个目录,例如 domoticz\www\dashboard,然后解压所有文件到这个文件夹中。
在 domoticz\www\<subfolder> 创建一个目录,例如 domoticz\www\dashboard,然后解压所有文件到这个文件夹中。


第25行: 第26行:
<code>cp CONFIG_DEFAULT.js CONFIG.js</code><br>
<code>cp CONFIG_DEFAULT.js CONFIG.js</code><br>
<br>
<br>
If you installed Dashticz V2 with the git clone command, than it's possible to update to the latest version:
如果你通过 git clone 命令安装 Dashticz V2,你可以通过以下方法更新到最新版本:
* Logon to your system with SSH and go to the '''\domoticz\www\<dashticzv2 folder>''' folder
 
* Enter <code>git pull</code> and there will be looked if there is an update from the current version. WARNING! First make a backup of the custom folder otherwise some files may be overwritten.
* 通过 SSH 登陆到你的系统,进入 '''\domoticz\www\<dashticzv2 folder>''' 文件夹
* 输入 <code>git pull</code> 会自动检查当前版本是否有更新。*警告!* 首先备份 custom 文件夹,否则某些文件可能会被重写。
<br>
<br>
By default, Dashticz V2 will show all your Domoticz favorites on the dashboard. You just have to edit the CONFIG.js file with the basics. <br>
默认, Dashticz V2 将显示所有在你仪表盘中的 Domoticz 收藏。 你只需要在 CONFIG.js 中做些基本的修改. <br>
Remove the '''/*''' at the beginning and '''*/''' at the end, next fill in YOUR IP Address and Port number for YOUR Domoticz installation!
移除前面的 '''/*''' 和最后的 '''*/''' ,然后填写你安装的 Domoticz 的IP 地址和端口号!


<syntaxhighlight lang="java">
<syntaxhighlight lang="java">

2018年8月2日 (四) 17:48的版本

安装 Dashticz v2.0,从 Github 上下载 Dashticz V2 的最新版本(https://github.com/robgeerts/dashticz_v2).

在 domoticz\www\<subfolder> 创建一个目录,例如 domoticz\www\dashboard,然后解压所有文件到这个文件夹中。

也可以使用 git clone 命令通过 Github 来安装 Dashticz v2。如何做呢?

  • 通过 SSH 登陆到你的系统,通过 "cd domoticz/www" (没有") 命令进入到 \domoticz\www 文件夹
  • 输入如下命令:


git clone https://github.com/robgeerts/dashticz_v2 (for master branch) 或者

git clone https://github.com/robgeerts/dashticz_v2 --branch beta (for beta branch)

  • Dashticz v2.0 将被克隆到 \domoticz\www\dashticz_v2 文件夹.


如果你想将 Dashticz v2.0 克隆到其他目录(例如'dashboard') 输入:

git clone https://github.com/robgeerts/dashticz_v2 dashboard (for master branch) or

git clone https://github.com/robgeerts/dashticz_v2 --branch beta dashboard (for beta branch)

安装完成后, 进入到 /domoticz/www/<dashticzv2 folder>/custom/ 文件夹, 复制 CONFIG_DEFAULT.js 文件到 CONFIG.js (mind the CAPITALS!).

cd domoticz/www/<dashticzv2 folder>/custom/
cp CONFIG_DEFAULT.js CONFIG.js

如果你通过 git clone 命令安装 Dashticz V2,你可以通过以下方法更新到最新版本:

  • 通过 SSH 登陆到你的系统,进入 \domoticz\www\<dashticzv2 folder> 文件夹
  • 输入 git pull 会自动检查当前版本是否有更新。*警告!* 首先备份 custom 文件夹,否则某些文件可能会被重写。


默认, Dashticz V2 将显示所有在你仪表盘中的 Domoticz 收藏。 你只需要在 CONFIG.js 中做些基本的修改.
移除前面的 /* 和最后的 */ ,然后填写你安装的 Domoticz 的IP 地址和端口号!

var config = {}
config['language'] = 'nl_NL'; //or: en_US, de_DE, fr_FR, hu_HU, it_IT, pt_PT, sv_SV
config['domoticz_ip'] = 'http://192.168.1.3:8084';
config['domoticz_refresh'] = '5';
config['dashticz_refresh'] = '60';


Parameter Description
config['language'] can be used to select the language, Chinese (cn_CN), Cestina (cz_CZ), Danish(dk_DK), German (de_DE), English (en_US), Spanish (es_ES), Finnish (fi_FI), French (fr_FR), Hungarian (hu_HU), Italian (it_IT), Dutch (nl_NL), Norwegian (no_NO), Polish (pl_PL) Portuguese (pt_PT), Russian (ru_RU), Slovak (sk_SK), Slovenian (si_SI), Swedish (sv_SV) or Ukrainian (ua_UA)
config['domoticz_ip'] is the URL to your Domoticz installation (with the correct PORT address)
config['domoticz_refresh'] the refresh rate of Dashticz v2.0 to get information from Domoticz
config['dashticz_refresh'] the refresh rate of the Dashticz v2.0 Dashboard


Now you can browse to the dashboard: http://192.168.1.3:8084/<dashticz v2 folder>/
Replace 192.168.1.3:8084 with YOUR IP Address and Port number for YOUR Domoticz installation!


Dashticz V2.0 Main Page Configuration