Initial Commit
This commit is contained in:
50
services/addons.cfg
Normal file
50
services/addons.cfg
Normal file
@ -0,0 +1,50 @@
|
||||
# The installation package of this openHAB instance
|
||||
# Note: This is only regarded at the VERY FIRST START of openHAB
|
||||
# Note: If you want to specify your add-ons yourself through entries below, set the package to "minimal"
|
||||
# as otherwise your definition might be in conflict with what the installation package defines.
|
||||
#
|
||||
# Optional. If not set, the dashboard (https://<yourserver>:8080/) will ask you to choose a package.
|
||||
#
|
||||
# Valid options:
|
||||
# - minimal : Installation only with dashboard, but no UIs or other add-ons. Use this for custom setups.
|
||||
# - simple : Setup for using openHAB purely through UIs - you need to expect MANY constraints in functionality!
|
||||
# - standard : Default setup for normal users, best for textual setup
|
||||
# - expert : Setup for expert users, especially for people migrating from openHAB 1.x
|
||||
# - demo : A demo setup which includes UIs, a few bindings, config files etc.
|
||||
#
|
||||
# See https://www.openhab.org/docs/configuration/packages.html for a detailed explanation of these packages.
|
||||
#
|
||||
#package = minimal
|
||||
|
||||
# Access Remote Add-on Repository
|
||||
# Defines whether the remote openHAB add-on repository should be used for browsing and installing add-ons.
|
||||
# This not only makes latest snapshots of add-ons available, it is also required for the installation of
|
||||
# any legacy 1.x add-on. (default is true)
|
||||
#
|
||||
#remote = true
|
||||
|
||||
# Include legacy 1.x bindings. If set to true, it also allows the installation of 1.x bindings for which there is
|
||||
# already a 2.x version available (requires remote repo access, see above). (default is false)
|
||||
#
|
||||
#legacy = true
|
||||
|
||||
# A comma-separated list of bindings to install (e.g. "binding = sonos,knx,zwave")
|
||||
#binding =
|
||||
|
||||
# A comma-separated list of UIs to install (e.g. "ui = basic,paper")
|
||||
#ui =
|
||||
|
||||
# A comma-separated list of persistence services to install (e.g. "persistence = rrd4j,jpa")
|
||||
#persistence =
|
||||
|
||||
# A comma-separated list of actions to install (e.g. "action = mail,pushover")
|
||||
#action =
|
||||
|
||||
# A comma-separated list of transformation services to install (e.g. "transformation = map,jsonpath")
|
||||
#transformation =
|
||||
|
||||
# A comma-separated list of voice services to install (e.g. "voice = marytts,freetts")
|
||||
#voice =
|
||||
|
||||
# A comma-separated list of miscellaneous services to install (e.g. "misc = myopenhab")
|
||||
#misc =
|
18
services/http.cfg
Normal file
18
services/http.cfg
Normal file
@ -0,0 +1,18 @@
|
||||
# timeout in milliseconds for the http requests (optional, defaults to 5000)
|
||||
#timeout=
|
||||
|
||||
# the interval in milliseconds when to find new refresh candidates
|
||||
# (optional, defaults to 1000)
|
||||
#granularity=
|
||||
|
||||
# whether to substitute the current time or state value into the URL
|
||||
# (optional, defaults to true)
|
||||
#format=
|
||||
|
||||
# configuration of the first cache item
|
||||
#<id1>.url=
|
||||
#<id1>.updateInterval=
|
||||
|
||||
# configuration of the second cache item
|
||||
#<id2>.url=
|
||||
#<id2>.updateInterval=
|
81
services/jdbc.cfg
Normal file
81
services/jdbc.cfg
Normal file
@ -0,0 +1,81 @@
|
||||
############################ JDBC Persistence Service ##################################
|
||||
# I N S T A L L J D B C P E R S I S T E N C E S E R V I C E
|
||||
#
|
||||
# https://github.com/openhab/openhab/wiki/JDBC-Persistence
|
||||
#
|
||||
# Tested databases/url-prefix: jdbc:derby, jdbc:h2, jdbc:hsqldb, jdbc:mariadb, jdbc:mysql, jdbc:postgresql, jdbc:sqlite
|
||||
#
|
||||
# derby, h2, hsqldb, sqlite can be embedded,
|
||||
# If no database is available it will be created, for example the url 'jdbc:h2:./testH2' creates a new DB in OpenHab Folder.
|
||||
#
|
||||
# Create new database, for example on a MySQL-Server use:
|
||||
# CREATE DATABASE 'yourDB' CHARACTER SET utf8 COLLATE utf8_general_ci;
|
||||
|
||||
# D A T A B A S E C O N F I G
|
||||
# Some URL-Examples, 'service' identifies and activates internally the correct jdbc driver.
|
||||
# required database url like 'jdbc:<service>:<host>[:<port>;<attributes>]'
|
||||
# url=jdbc:derby:./testDerby;create=true
|
||||
# url=jdbc:h2:./testH2
|
||||
# url=jdbc:hsqldb:./testHsqlDb
|
||||
# url=jdbc:mariadb://192.168.0.1:3306/testMariadb
|
||||
url=jdbc:mysql://10.112.30.17:3306/openhab_ffr
|
||||
# url=jdbc:postgresql://192.168.0.1:5432/testPostgresql
|
||||
# url=jdbc:sqlite:./testSqlite.db
|
||||
# url=
|
||||
|
||||
# required database user
|
||||
user=openhab_ffr
|
||||
|
||||
# required database password
|
||||
password=112PAlokasAwu2013
|
||||
|
||||
# E R R O R H A N D L I N G
|
||||
# optional when Service is deactivated (optional, default: 0 -> ignore)
|
||||
#errReconnectThreshold=
|
||||
|
||||
# I T E M O P E R A T I O N S
|
||||
# optional tweaking SQL datatypes
|
||||
# see: https://mybatis.github.io/mybatis-3/apidocs/reference/org/apache/ibatis/type/JdbcType.html
|
||||
# see: http://www.h2database.com/html/datatypes.html
|
||||
# see: http://www.postgresql.org/docs/9.3/static/datatype.html
|
||||
# defaults:
|
||||
#sqltype.CALL = VARCHAR(200)
|
||||
#sqltype.COLOR = VARCHAR(70)
|
||||
#sqltype.CONTACT = VARCHAR(6)
|
||||
#sqltype.DATETIME = DATETIME
|
||||
#sqltype.DIMMER = TINYINT
|
||||
#sqltype.LOCATION = VARCHAR(30)
|
||||
#sqltype.NUMBER = DOUBLE
|
||||
#sqltype.ROLLERSHUTTER = TINYINT
|
||||
#sqltype.STRING = VARCHAR(65500)
|
||||
#sqltype.SWITCH = VARCHAR(6)
|
||||
|
||||
# For Itemtype "Number" default decimal digit count (optional, default: 3)
|
||||
#numberDecimalcount=
|
||||
|
||||
# T A B L E O P E R A T I O N S
|
||||
# Tablename Prefix String (optional, default: "item")
|
||||
# for Migration from MYSQL-Bundle set to 'Item'.
|
||||
#tableNamePrefix=Item
|
||||
|
||||
# Tablename Prefix generation, using Item real names or "item" (optional, default: false -> "item")
|
||||
# If true, 'tableNamePrefix' is ignored.
|
||||
tableUseRealItemNames=true
|
||||
|
||||
# Tablename Suffix length (optional, default: 4 -> 0001-9999)
|
||||
# for Migration from MYSQL-Bundle set to 0.
|
||||
#tableIdDigitCount=
|
||||
|
||||
# Rename existing Tables using tableUseRealItemNames and tableIdDigitCount (optional, default: false)
|
||||
# USE WITH CARE! Deactivate after Renaming is done!
|
||||
#rebuildTableNames=true
|
||||
|
||||
# D A T A B A S E C O N N E C T I O N S
|
||||
# Some embeded Databases can handle only one Connection (optional, default: configured per database in packet org.openhab.persistence.jdbc.db.* )
|
||||
# see: https://github.com/brettwooldridge/HikariCP/issues/256
|
||||
# jdbc.maximumPoolSize = 1
|
||||
# jdbc.minimumIdle = 1
|
||||
|
||||
# T I M E K E E P I N G
|
||||
# (optional, default: false)
|
||||
enableLogTime=true
|
30
services/pushover.cfg
Normal file
30
services/pushover.cfg
Normal file
@ -0,0 +1,30 @@
|
||||
# The timeout for the communication with the Pushover service (optional, defaults
|
||||
# to 10000 milliseconds)
|
||||
#defaultTimeout=
|
||||
|
||||
# You need to provide a Pushover API token to send to devices. If not here, than during
|
||||
# the action call itself.
|
||||
defaultToken=abq4e4ok9n6zdf7ut32fm929ki338y
|
||||
|
||||
# You need to provide a Pushover User Key to send to devices. If not here, than during
|
||||
# the action call itself.
|
||||
#defaultUser=
|
||||
|
||||
# Name of the sending application (optional). Defaults to 'openHAB'.
|
||||
defaultTitle=openHAB
|
||||
|
||||
# The priority to use for messages if not specified otherwise. Can range from
|
||||
# -2 (lowest) to 2 (highest)
|
||||
#defaultPriority=
|
||||
|
||||
# Url to attach to the message if not specified in the command (optional). Can be left empty.
|
||||
#defaultUrl=
|
||||
|
||||
# Url Title to attach to the message if not specified in the command (optional). Can be left empty.
|
||||
#defaultUrlTitle=
|
||||
|
||||
# When priority is high priority (2), how often in seconds should messages be resent. Defaults to 300 seconds.
|
||||
#defaultRetry=
|
||||
|
||||
# When priority is high priority (2), how long to continue resending messages until acknowledged. Defaults to 3600 seconds.
|
||||
#defaultExpire=
|
6
services/readme.txt
Normal file
6
services/readme.txt
Normal file
@ -0,0 +1,6 @@
|
||||
Your service configurations will reside here.
|
||||
All configuration files have to have the ".cfg" file extension.
|
||||
Service configuration files are automatically created as soon as you install an add-on that can be configured.
|
||||
|
||||
Check out the openHAB documentation for more details:
|
||||
https://www.openhab.org/docs/configuration/services.html
|
73
services/runtime.cfg
Normal file
73
services/runtime.cfg
Normal file
@ -0,0 +1,73 @@
|
||||
##################### LOCALE ####################
|
||||
|
||||
# The default language that should be used. If not specified, the system default locale is used.
|
||||
# The ISO 639 alpha-2 or alpha-3 language code (if there is no alpha-2 one).
|
||||
# Example: "en" (English), "de" (German), "ja" (Japanese), "kok" (Konkani)
|
||||
#
|
||||
#org.eclipse.smarthome.core.localeprovider:language=
|
||||
|
||||
# The region that should be used.
|
||||
# ISO 3166 alpha-2 country code or UN M.49 numeric-3 area code.
|
||||
# Example: "US" (United States), "DE" (Germany), "FR" (France), "029" (Caribbean)
|
||||
#
|
||||
#org.eclipse.smarthome.core.localeprovider:region=
|
||||
|
||||
################ PERSISTENCE ####################
|
||||
|
||||
# The persistence service to use if no other is specified.
|
||||
#
|
||||
#org.eclipse.smarthome.persistence:default=
|
||||
|
||||
################### AUDIO #######################
|
||||
|
||||
# This parameter defines the default audio source to use (if not set, the first available one will be used.
|
||||
#
|
||||
#org.eclipse.smarthome.audio:defaultSource=
|
||||
|
||||
# This parameter defines the default audio sink to use (if not set, the first available one will be used.
|
||||
#
|
||||
#org.eclipse.smarthome.audio:defaultSink=
|
||||
|
||||
##################### VOICE ####################
|
||||
|
||||
# This parameter defines the default text-to-speech service to use (if not set, the first available one will be used.
|
||||
#
|
||||
#org.eclipse.smarthome.voice:defaultTTS=
|
||||
|
||||
# This parameter defines the default speech-to-text service to use (if not set, the first available one will be used.
|
||||
#
|
||||
#org.eclipse.smarthome.voice:defaultSTT=
|
||||
|
||||
# The default voice to use if no specific TTS service or voice is specified.
|
||||
#
|
||||
#org.eclipse.smarthome.voice:defaultVoice=
|
||||
|
||||
# The default human language interpreter to use if no other is specified.
|
||||
#
|
||||
#org.eclipse.smarthome.voice:defaultHLI=
|
||||
|
||||
################ MISCELLANOUS ####################
|
||||
|
||||
# The karaf sshHost parameter configures the bind address for the ssh login to karaf.
|
||||
# Default is 127.0.0.1 (localhost), so it is only possible to login from the local machine.
|
||||
#
|
||||
# Setting this to the address of another network interfaces will allow login from this network.
|
||||
# Setting this to 0.0.0.0 will allow login from all network interfaces.
|
||||
#
|
||||
# !!! Security warning !!!
|
||||
# Remember to change default login/password, if you allow external login.
|
||||
# See https://www.openhab.org/docs/administration/console.html for details.
|
||||
#
|
||||
#org.apache.karaf.shell:sshHost = 0.0.0.0
|
||||
|
||||
# Setting this to true will automatically approve all inbox entries and create Things for them,
|
||||
# so that they are immediately available in the system (default is false)
|
||||
#
|
||||
#org.eclipse.smarthome.inbox:autoApprove=true
|
||||
|
||||
# This setting allows to switch between a "simple" and an "advanced" mode for item management.
|
||||
# In simple mode (autoLinks=true), links and their according items are automatically created for new Things.
|
||||
# In advanced mode (autoLinks=false), the user has the full control about which items channels are linked to.
|
||||
# Existing links will remain untouched. (default is true)
|
||||
#
|
||||
#org.eclipse.smarthome.links:autoLinks=false
|
Reference in New Issue
Block a user