mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-01 20:20:10 +00:00
New Version 1.0 - Changed Some Comments
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@900 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
4cdc7a25be
commit
8766af3767
@ -3,24 +3,49 @@
|
|||||||
# Feedback: http://groups.google.com/group/fhem-users
|
# Feedback: http://groups.google.com/group/fhem-users
|
||||||
# Define Custom View
|
# Define Custom View
|
||||||
# Stand: 04.2011
|
# Stand: 04.2011
|
||||||
# Version: 0.9
|
# Version: 1.0
|
||||||
|
################################################################
|
||||||
|
#
|
||||||
|
# Copyright notice
|
||||||
|
#
|
||||||
|
# (c) 2011 Copyright: Axel Rieger (fhem bei anax punkt info)
|
||||||
|
# All rights reserved
|
||||||
|
#
|
||||||
|
# This script free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; either version 2 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# The GNU General Public License can be found at
|
||||||
|
# http://www.gnu.org/copyleft/gpl.html.
|
||||||
|
# A copy is found in the textfile GPL.txt and important notices to the license
|
||||||
|
# from the author is found in LICENSE.txt distributed with these scripts.
|
||||||
|
#
|
||||||
|
# This script is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
# Usage
|
# Usage
|
||||||
# define <NAME> VIEW
|
# define <NAME> VIEW
|
||||||
# attr <NAME> ViewRegExType -> Chose Device-Type (Perl-RegExp)
|
# attr <NAME> ViewRegExType -> Chose Device-Type (Perl-RegExp)
|
||||||
# attr <NAME> ViewRegExName -> Chose Device-Name (Perl-RegExp)
|
# attr <NAME> ViewRegExName -> Chose Device-Name (Perl-RegExp)
|
||||||
# attr <NAME> ViewRegExReading -> Chose Readings (Perl-RegExp)
|
# attr <NAME> ViewRegExReading -> Chose Readings (Perl-RegExp)
|
||||||
|
# attr <Name> ViewRegExReadingStringCompare -> Chose ReadingValue (Perl-RegEx)
|
||||||
#
|
#
|
||||||
# Examples:
|
# Examples:
|
||||||
# Show all Device with Type FHT
|
# Show all Device with Type FHT
|
||||||
# attr MyFHT ViewRegExType FHT
|
# attr MyFHT ViewRegExType FHT
|
||||||
# attr MyFHT ViewRegExName * or NotSet
|
# attr MyFHT ViewRegExName * or NotSet
|
||||||
# attr MyFHT ViewRegExReading * or NotSet
|
# attr MyFHT ViewRegExReading * or NotSet
|
||||||
|
# attr MyFHT ViewRegExReadingStringCompare * or Notset
|
||||||
#
|
#
|
||||||
# Show all Warnings of ALL Devices
|
# Show all Warnings of ALL Devices without "none"-Values
|
||||||
# attr MyFHT ViewRegExType * or NotSet
|
# attr MyFHT ViewRegExType * or NotSet
|
||||||
# attr MyFHT ViewRegExName * or NotSet
|
# attr MyFHT ViewRegExName * or NotSet
|
||||||
# attr MyFHT ViewRegExReading warnings
|
# attr MyFHT ViewRegExReading warnings
|
||||||
|
# attr MyFHT ViewRegExReadingStringCompare [^none]
|
||||||
################################################################################
|
################################################################################
|
||||||
package main;
|
package main;
|
||||||
use strict;
|
use strict;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user