2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 04:36:36 +00:00

10_SD_GT.pm: added META

git-svn-id: https://svn.fhem.de/fhem/trunk@26985 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
sidey79 2023-01-06 12:01:11 +00:00
parent b81298aa8c
commit f8c08ffc3f

View File

@ -13,6 +13,7 @@ package SD_GT;
use strict;
use warnings;
use GPUtils qw(GP_Import GP_Export);
use FHEM::Meta;
our $VERSION = '1.0';
@ -51,7 +52,7 @@ sub Initialize {
$hash->{Match} = '^P49#[A-Fa-f0-9]+';
$hash->{AttrList} = "IODev do_not_notify:1,0 ignore:0,1 showtime:1,0 $main::readingFnAttributes";
$hash->{AutoCreate} = {'SD_GT_LEARN' => {FILTER => '%NAME', autocreateThreshold => '5:180', GPLOT => q{}}};
return;
return FHEM::Meta::InitMod( __FILE__, $hash );
}
sub parseSystemcodeHex;
@ -577,5 +578,86 @@ sub getSystemCodes {
</ul>
=end html_DE
=for :application/json;q=META.json 10_SD_GT.pm
{
"abstract": "devices communicating using the ELV FS10 protocol",
"author": [
"Sidey <>",
"elektron-bss <>"
],
"x_fhem_maintainer": [
"elektron-bss <>",
"Sidey"
],
"x_fhem_maintainer_github": [
"Sidey79",
"HomeAutoUser",
"elektron-bbs"
],
"description": "The FS10 module decrypts and sends FS10 messages, which are processed by the SIGNALduino",
"dynamic_config": 1,
"keywords": [
"fhem-sonstige-systeme",
"fhem-hausautomations-systeme",
"fhem-mod",
"signalduino",
"FS10"
],
"license": [
"GPL_2"
],
"meta-spec": {
"url": "https://metacpan.org/pod/CPAN::Meta::Spec",
"version": 2
},
"name": "FHEM::SD_GT",
"prereqs": {
"runtime": {
"requires": {
"GPUtils" : "0"
}
},
"develop": {
"requires": {
"GPUtils" : "0"
}
}
},
"release_status": "stable",
"resources": {
"bugtracker": {
"web": "https://github.com/RFD-FHEM/RFFHEM/issues/"
},
"x_testData": [
{
"url": "https://raw.githubusercontent.com/RFD-FHEM/RFFHEM/master/t/FHEM/10_SD_GT/testData.json",
"testname": "Testdata with SD_GT sensors"
}
],
"repository": {
"x_master": {
"type": "git",
"url": "https://github.com/RFD-FHEM/RFFHEM.git",
"web": "https://github.com/RFD-FHEM/RFFHEM/tree/master"
},
"type": "svn",
"url": "https://svn.fhem.de/fhem",
"web": "https://svn.fhem.de/trac/browser/trunk/fhem/FHEM/10_SD_GT.pm",
"x_branch": "trunk",
"x_filepath": "fhem/FHEM/",
"x_raw": "https://svn.fhem.de/trac/export/latest/trunk/fhem/FHEM/10_SD_GT.pm"
},
"x_support_community": {
"board": "SlowRF",
"boardId": "21",
"cat": "FHEM - Hausautomations-Systeme",
"description": "Themen zu FS20, FHT, EM, WS, HMS.",
"forum": "FHEM Forum",
"rss": "https://forum.fhem.de/index.php?action=.xml;type=rss;board=21",
"title": "FHEM Forum: SlowRF",
"web": "https://forum.fhem.de/index.php/board,21.0.html"
}
}
}
=end :application/json;q=META.json
=cut