########################################### # $Id: mqtt2.template 18592 2019-02-14 06:27:39Z Beta-User $ # # Comments start with #. Empty lines are ignored. # Syntax of one entry: name: line, one optional filter: line, zero or more par: lines, FHEM-Commands # filter:INTERNAL=VALUE (optional) # par: name of the parameter; comment; perl_code (optional) # perl_code returns a value for the parameter, or undef. # If undef, the user has to specify them (the comment is shown to the user) ########################################### name:0_00_General_Info filter:TYPE=HTTPMOD desc: Forum link for suggestions or bug reports on httpmod-template ################################# #Clever Tanken # #Single station prices, Forum: https://forum.fhem.de/index.php/topic,94640.msg873905.html#msg873905 name:A_01a_clever_tanken_single_station filter:TYPE=HTTPMOD desc: Get prices for a single gas station.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://www.clever-tanken.de/tankstelle_details/29092 1800
Change station ID to your needs
Source: Forum attr DEVICE userattr reading01Name reading01Regex reading02Name reading02Regex reading03Name reading03Regex readingOExpr attr DEVICE enableControlSet 1 attr DEVICE reading01Name Diesel attr DEVICE reading01Regex "price-type-name">Diesel[\d\D]{700,900}"current-price-.">([0-9\.]+[^0-9]+suffix-price-.">[0-9]) attr DEVICE reading02Name SuperE10 attr DEVICE reading02Regex "price-type-name">Super E10[\d\D]{700,900}"current-price-.">([0-9\.]+[^0-9]+suffix-price-.">[0-9]) attr DEVICE reading03Name SuperE5 attr DEVICE reading03Regex "price-type-name">Super E5[\d\D]{700,900}"current-price-.">([0-9\.]+[^0-9]+suffix-price-.">[0-9]) attr DEVICE readingOExpr $val =~ tr/,/./;;$val attr DEVICE stateFormat E5: SuperE5 € / E10: SuperE10 € / D: Diesel € attr DEVICE timeout 10 attr DEVICE verbose 2 attr DEVICE model A_01a_clever_tanken_single_station #defmod FileLogSpritE5 FileLog ./log/SpritE5-%Y.log TankeJetRueckmarsdorfer:SuperE5:.*|DEVICE:SuperE5:.* #Station overview, one product, Forum: https://forum.fhem.de/index.php/topic,94640.msg873841.html#msg873841 name:A_01a_clever_tanken_multi_station filter:TYPE=HTTPMOD desc: Get prices for one product as environment search.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD https://www.clever-tanken.de/tankstelle_liste?spritsorte=3&r=10&ort=52152 1800
Change PLZ, radius and product to your needs
Source: Forum attr DEVICE reading01Name Tankstellenname attr DEVICE reading01Regex
(.*)<\/div> attr DEVICE reading01RegOpt g attr DEVICE reading02Name Preis attr DEVICE reading02Regex
(.*) attr DEVICE reading02RegOpt g attr DEVICE reading03Name Strasse attr DEVICE reading03Regex
(.*)<\/div> attr DEVICE reading03RegOpt g attr DEVICE reading04Name Ort attr DEVICE reading04Regex
(.*)<\/div> attr DEVICE reading04RegOpt g attr DEVICE reading05Name Entfernung attr DEVICE reading05Regex
(.*)<\/div> attr DEVICE reading05RegOpt g attr DEVICE model A_01a_clever_tanken_multi_station #German weather warnings from DWD, Forum: https://forum.fhem.de/index.php/topic,45176.msg905879.html#msg905879 name:A_02a_DWD_weather_warnings filter:TYPE=HTTPMOD desc: Get weather warnings from DWD.
Define a HTTPMOD device like
defmod Wetterwarner HTTPMOD https://www.dwd.de/DWD/warnungen/warnapp/json/warnings.json 0
Change region to your needs
Source: Forum par:REGIONCODE;Get region code from https://www.dwd.de/DE/leistungen/opendata/help/warnungen/cap_warncellids_csv.csv?__blob=publicationFile&v=3;{ undef } attr DEVICE enableControlSet 1 attr DEVICE extractAllJSON 1 attr DEVICE extractAllJSONFilter REGIONCODE attr DEVICE readingEncode UTF-8 attr DEVICE preProcessRegex s/warnWetter..............|\);;|\t|\n|\r//g attr DEVICE model A_02a_DWD_weather_warnings #German river water levels, Wiki: https://wiki.fhem.de/wiki/Flusspegel name:A_02d_pegelonline filter:TYPE=HTTPMOD desc: Get water level infor for german rivers from www.pegelonline.wsv.de.
Define a HTTPMOD device like
defmod Pegelstaende HTTPMOD https://www.pegelonline.wsv.de/webservices/rest-api/v2/stations/070b1eb4-3872-4e07-b2e5-e25fd9251b93/W/currentmeasurement.json 3600
Change station argument to your needs
Source: Wiki
Source: Forum attr DEVICE enableControlSet 1 attr DEVICE extractAllJSON 1 attr DEVICE event-on-change-reading value,stateMnwMhw,stateNswHsw,timestamp,trend attr DEVICE event-on-update-reading value attr DEVICE sortby 1 attr DEVICE stateFormat {sprintf("%.0f",ReadingsVal("DEVICE","value",0))} attr DEVICE timeout 5 attr DEVICE model A_02d_pegelonline #Austrian weather, Forum: https://forum.fhem.de/index.php/topic,94110.msg868080.html#msg868080; enhanced by JoeALLb: https://forum.fhem.de/index.php/topic,97694.msg912164.html#msg912164 name:A_02m_ORF_weather filter:TYPE=HTTPMOD desc: Get austrian weather.
Define a HTTPMOD device like
defmod weatherORF HTTPMOD none 1800
You will be asked to provide a MAINURL like https://wetter.orf.at/steiermark/ and a stationname like grazuniversitaet
Source: Enhanced version in FHEM Forum par:MAINURL;First part of the URL. Example: https://wetter.orf.at/steiermark/;{ AttrVal("DEVICE","get02URL","") =~ m,(https://wetter.orf.at/[^/]+[/]).*, ? $1 : undef } par:STATIONNAME;Name of the respective weather station as written in the last part of the URL. Examples: grazuniversitaet or innerestadt;{ AttrVal("DEVICE","get01URL","") =~ m,https://wetter.orf.at/[^/]+[/]([^/]+)[/], ? $1 : undef } attr DEVICE userattr get01Name get01Poll:0,1 get01URL get02-1Name get02-2Name get02-3Name get02-4Name get02-5Name get02-6Name get02-7Name get02-8Name get02Name get02Poll:0,1 get02Regex get02URL reading01-1Name reading01-2Name reading01-3Name reading01-4Name reading01-5Name reading01Regex attr DEVICE enableControlSet 1 attr DEVICE get01Name Wetterdaten attr DEVICE get01Poll 1 attr DEVICE get01URL MAINURLSTATIONNAME/ attr DEVICE get02-1Name sunRise attr DEVICE get02-2Name sunSet attr DEVICE get02-3Name moonPhase attr DEVICE get02-4Name moonRise attr DEVICE get02-5Name moonSet attr DEVICE get02-6Name dayLength attr DEVICE get02-7Name dawn attr DEVICE get02-8Name dusk #attr DEVICE get02-9Name weather attr DEVICE get02Name Astro-Daten attr DEVICE get02Poll 1 attr DEVICE get02Regex Sonnenaufgang um <\/span>(.*)(.*)(\d\d:\d\d)(\d\d:\d\d)]+>(\d\d:\d\d)&[\w\W]*Morgen<\/span>: <\/span>(\d\d:\d\d)&[\w\W]*Abend:<\/span><\/span>(\d\d:\d\d) attr DEVICE get02URL MAINURL attr DEVICE reading01Regex (?s)Temperatur.*?.*?>.*?(?[\d,]+)&thinsp.*?Taupunkt.*?.*?>.*?(?[\d,]+)&thinsp.*?Wind.*?>\n\s*(?[^<]+)\s\n\s*(?[^<]+)\s\n\s*(?[^<]+)\s\n\s*(?[^<]+)\s\n\s*(?[^<]+)\s\n\s*(?[^<\n]+).*?Messwerte[^<\n]+) attr DEVICE room Wetter attr DEVICE stateFormat W: wind, H: humidity%rH, T: temperature°C attr DEVICE model A_02m_ORF_weather #Geschwindigkeitsüberwachung, Forum: https://forum.fhem.de/index.php/topic,90014.msg824805.html#msg824805 name:A_03a_blitzer filter:TYPE=HTTPMOD desc: Get austrian weather.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD https://cdn2.atudo.net/api/1.0/vl.php?type=0,1,2,3,4,5,6&box=52.xxxxxx,8.xxxxxx,53.xxxxxx,9.xxxxxx 0
Change city to your needs
Source: Forum attr DEVICE userattr getData getHeader1 getHeader2 getURL reading01DeleteIfUnmatched reading01JSON reading01Name reading01Regex reading02Name reading02RegOpt reading02Regex reading03JSON reading03Name readingEncode requestHeader1 requestHeader2 setParseResponse:0,1 attr DEVICE enableControlSet 1 attr DEVICE extractAllJSON 1 attr DEVICE getHeader1 Content-Type: application/json attr DEVICE getHeader2 Accept: */* attr DEVICE readingEncode utf8 attr DEVICE model A_03a_blitzer #homebridge-videodoorbell, Forum: https://forum.fhem.de/index.php/topic,94291.msg870289.html#msg870289 name:A_02c_homebridge_videodoorbell filter:TYPE=HTTPMOD desc: Controll your homebridge-videodoorbell.
Define a HTTPMOD device like
define Video_Doorbell HTTPMOD none 0
Source: Forum par:IP_PORT;Enter IP:Port as configured in your doorbell, like 123.456.7.8:5005;{undef } attr DEVICE get01Name klingel2homekitget attr DEVICE get01URL http://IP_PORT/ attr DEVICE get01Data ding=dong&dong=ding attr DEVICE get01Header02 User-Agent: curl/7.38.0 attr DEVICE get01Header04 Accept: */* attr DEVICE get01Header06 Content-Type: application/x-www-form-urlencoded attr DEVICE set01Name klingel2homekitset attr DEVICE set01URL http://IP_PORT/ attr DEVICE set01Data ding=dong&dong=ding attr DEVICE set01Header02 User-Agent: curl/7.38.0 attr DEVICE set01Header04 Accept: */* attr DEVICE set01Header06 Content-Type: application/x-www-form-urlencoded attr DEVICE set01NoArg 1 attr DEVICE model A_02c_homebridge_videodoorbell # Pihole Statistics, Website: https://wolf-u.li/5987/einbindung-der-pihole-statistiken-in-fhem/ name:A_02e_pihole_statistics filter:TYPE=HTTPMOD desc: Get Statistics from your pihole instance.
Define a HTTPMOD device like
define DEVICE HTTPMOD http://192.168.133.7/admin/api.php 300
Change IP to your needs
Source: Website attr DEVICE userattr getURL attr DEVICE extractAllJSON 1 attr DEVICE getURL http://dns/admin/api.php attr DEVICE stateFormat DNS Anfragen: dns_queries_today
Geblockte Seiten: ads_blocked_today (ads_blocked_today_formatted %) attr DEVICE userReadings ads_blocked_today_formatted {round(ReadingsNum($name,"ads_percentage_today",0),0)} # Pharmacy Emergency Service Germany, Forum: https://forum.fhem.de/index.php?topic=87234.0 name:A_02f_pharmacy_emergency_service_germany filter:TYPE=HTTPMOD desc: Gets the current emergency service of a pharmacy closeby your postal code
Define a HTTPMOD device like
define DEVICE HTTPMOD http://apothekenfinder.mobi/interface/json.php?device=web&source=not&search=1337 0
Change the postalcode (1337 in this example) to yours
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://192.168.5.43/DevMgmt/ProductConfigDyn.xml 3600
Change IP to your needs
Source: Forum attr DEVICE userattr reading01Name reading01XPath-Strict reading02Name reading02XPath-Strict reading03Name reading03XPath-Strict reading04Name reading04XPath-Strict reading05Name reading05XPath-Strict attr DEVICE httpVersion 1.1 attr DEVICE reading01Name Model attr DEVICE reading01XPath-Strict //dd:MakeAndModel/text() attr DEVICE reading02Name Serial_Number attr DEVICE reading02XPath-Strict //dd:SerialNumber/text() attr DEVICE reading03Name Firmware_Date attr DEVICE reading03XPath-Strict //dd:Date/text() attr DEVICE reading04Name Total_Memory attr DEVICE reading04XPath-Strict //dd:TotalMemory/text() attr DEVICE reading05Name Available_Memory attr DEVICE reading05XPath-Strict //dd:AvailableMemory/text() attr DEVICE stateFormat Modell: Model SN: Serial_Number attr DEVICE userReadings Memory_Usage {100-(ReadingsNum("DEVICE","Available_Memory","")/2.56)} attr DEVICE model B_01a_hp_printer_config # Printer cartridge states name:B_01a_hp_printer_cartridge_status filter:TYPE=HTTPMOD desc: Get cartridge states of your HP printer.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://192.168.5.43/DevMgmt/ConsumableConfigDyn.xml 3600
Change IP to your needs
Source: Forum attr DEVICE userattr reading01Name reading01XPath-Strict reading02Name reading02XPath-Strict reading03Name reading03XPath-Strict reading04Name reading04XPath-Strict reading05Name reading05XPath-Strict reading06Name reading06XPath-Strict$ attr DEVICE httpVersion 1.1 attr DEVICE reading01Name Cyan attr DEVICE reading01XPath-Strict //ccdyn:ConsumableInfo[2]/dd:ConsumablePercentageLevelRemaining/text() attr DEVICE reading02Name Magenta attr DEVICE reading02XPath-Strict //ccdyn:ConsumableInfo[3]/dd:ConsumablePercentageLevelRemaining/text() attr DEVICE reading03Name Yellow attr DEVICE reading03XPath-Strict //ccdyn:ConsumableInfo[4]/dd:ConsumablePercentageLevelRemaining/text() attr DEVICE reading04Name Black attr DEVICE reading04XPath-Strict //ccdyn:ConsumableInfo[1]/dd:ConsumablePercentageLevelRemaining/text() attr DEVICE reading05Name CyanCatridgeModel attr DEVICE reading05XPath-Strict //ccdyn:ConsumableInfo[3]/dd:ConsumableSelectibilityNumber/text() attr DEVICE reading06Name MagentaCatridgeModel attr DEVICE reading06XPath-Strict //ccdyn:ConsumableInfo[2]/dd:ConsumableSelectibilityNumber/text() attr DEVICE reading07Name YellowCatridgeModel attr DEVICE reading07XPath-Strict //ccdyn:ConsumableInfo[4]/dd:ConsumableSelectibilityNumber/text() attr DEVICE reading08Name BlackCatridgeModel attr DEVICE reading08XPath-Strict //ccdyn:ConsumableInfo[5]/dd:ConsumableSelectibilityNumber/text() attr DEVICE stateFormat C: Cyan% M: Magenta% Y: Yellow% B: Black% attr DEVICE model B_01a_hp_printer_cartridge_status # Printer statistics name:B_01a_hp_printer_statistics filter:TYPE=HTTPMOD desc: Gets various statistics from your HP printer.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://192.168.5.43/DevMgmt/ProductUsageDyn.xml 3600
Change IP to your needs
Source: Forum attr DEVICE userattr reading01Name reading01XPath-Strict reading02Name reading02XPath-Strict reading03Name reading03XPath-Strict reading04Name reading04XPath-Strict reading05Name reading05XPath-Strict reading06Name reading06XPath-Strict reading07Name reading07XPath-Strict reading08Name reading08XPath-Strict reading09Name reading09XPath-Strict reading10Name reading10XPath-Strict reading11Name reading11XPath-Strict reading20Name reading20XPath-Strict reading30Name reading30XPath-Strict reading40Name reading40XPath-Strict reading41Name reading41XPath-Strict reading50Name reading50XPath-Strict reading51Name reading51XPath-Strict attr DEVICE httpVersion 1.1 attr DEVICE reading01Name Printer_Pages_Total attr DEVICE reading01XPath-Strict //pudyn:PrinterSubunit/dd:TotalImpressions/text() attr DEVICE reading02Name Printer_Pages_Monochrome attr DEVICE reading02XPath-Strict //pudyn:PrinterSubunit/dd:MonochromeImpressions/text() attr DEVICE reading03Name Printer_Pages_Color attr DEVICE reading03XPath-Strict //pudyn:PrinterSubunit/dd:ColorImpressions/text() attr DEVICE reading04Name Printer_Pages_Duplex attr DEVICE reading04XPath-Strict //pudyn:PrinterSubunit/dd:DuplexSheets/text() attr DEVICE reading05Name Printer_Jam_Events attr DEVICE reading05XPath-Strict //pudyn:PrinterSubunit/dd:JamEvents/text() attr DEVICE reading06Name Printer_Mispick_Events attr DEVICE reading06XPath-Strict //pudyn:PrinterSubunit/dd:MispickEvents/text() attr DEVICE reading10Name Scanner_Scans_Total attr DEVICE reading10XPath-Strict //pudyn:ScannerEngineSubunit/dd:ScanImages/text() attr DEVICE reading11Name Scanner_Scans_ADF_Image attr DEVICE reading11XPath-Strict //pudyn:ScannerEngineSubunit/dd:AdfImages/text() attr DEVICE reading12Name Scanner_Scans_Flatbed_Image attr DEVICE reading12XPath-Strict //pudyn:ScannerEngineSubunit/dd:FlatbedImages/text() attr DEVICE reading13Name Scanner_Jam_Events attr DEVICE reading13XPath-Strict //pudyn:ScannerEngineSubunit/dd:JamEvents/text() attr DEVICE reading14Name Scanner_Mispick_Events attr DEVICE reading14XPath-Strict //pudyn:ScannerEngineSubunit/dd:MispickEvents/text() attr DEVICE reading20Name InkMagentaPagesRemaining attr DEVICE reading20XPath-Strict //pudyn:Consumable[dd:MarkerColor='Magenta']/dd:EstimatedPagesRemaining/text() attr DEVICE reading21Name InkMagentaPercentRemaining attr DEVICE reading21XPath-Strict //pudyn:Consumable[dd:MarkerColor='Magenta']/dd:ConsumableRawPercentageLevelRemaining/text() attr DEVICE reading30Name InkCyanPagesRemaining attr DEVICE reading30XPath-Strict //pudyn:Consumable[dd:MarkerColor='Cyan']/dd:EstimatedPagesRemaining/text() attr DEVICE reading31Name InkCyanPercentRemaining attr DEVICE reading31XPath-Strict //pudyn:Consumable[dd:MarkerColor='Cyan']/dd:ConsumableRawPercentageLevelRemaining/text() attr DEVICE reading40Name InkYellowPagesRemaining attr DEVICE reading40XPath-Strict //pudyn:Consumable[dd:MarkerColor='Yellow']/dd:EstimatedPagesRemaining/text() attr DEVICE reading41Name InkYellowPercentRemaining attr DEVICE reading41XPath-Strict //pudyn:Consumable[dd:MarkerColor='Yellow']/dd:ConsumableRawPercentageLevelRemaining/text() attr DEVICE reading50Name InkBlackPagesRemaining attr DEVICE reading50XPath-Strict //pudyn:Consumable[dd:MarkerColor='Black']/dd:EstimatedPagesRemaining/text() attr DEVICE reading51Name InkBlackPercentRemaining attr DEVICE reading51XPath-Strict //pudyn:Consumable[dd:MarkerColor='Black']/dd:ConsumableRawPercentageLevelRemaining/text() attr DEVICE stateFormat Total: Printer_Pages_Total Monochrome: Printer_Pages_Monochrome Color: Printer_Pages_Color attr DEVICE model B_01a_hp_printer_statistics # Printer status name:B_01a_hp_printer_status filter:TYPE=HTTPMOD desc: Get status of your hp printer.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://192.168.5.43/DevMgmt/ProductStatusDyn.xml 60
Change IP to your needs
Source: Forum attr DEVICE userattr reading01Name reading01XPath-Strict attr DEVICE httpVersion 1.1 attr DEVICE reading01Name Status attr DEVICE reading01XPath-Strict //psdyn:LocString[@lang='de']/text() attr DEVICE stateFormat Status attr DEVICE model B_01a_hp_printer_status ################################# #Epson Printers # # Forum: https://forum.fhem.de/index.php/topic,90601.msg872234.html#msg872234 # Printer cartridge states name:B_01b_epson_printer_cartridge_status filter:TYPE=HTTPMOD desc: Get cartridge states of your Epson printer.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://192.168.188.25/PRESENTATION/HTML/TOP/PRTINFO.HTML 3600
Change IP to your needs
Source: Forum attr DEVICE reading01Name Yellow attr DEVICE reading01Regex Ink_Y.*?='([\d]+)' attr DEVICE reading02Name Cyan attr DEVICE reading02Regex Ink_C.*?='([\d]+)' attr DEVICE reading03Name Magenta attr DEVICE reading03Regex Ink_M.*?='([\d]+)' attr DEVICE reading04Name Black attr DEVICE reading04Regex Ink_B.*?='([\d]+)' attr DEVICE stateFormat C: Cyan% M: Magenta% Y: Yellow% B: Black% attr DEVICE model B_01b_epson_printer_cartridge_status ################################# #Brother Printers # # Forum: https://forum.fhem.de/index.php/topic,97483.msg908461.html#msg908461 # Printer cartridge states name:B_01c_brother_printer_cartridge_status filter:TYPE=HTTPMOD desc: Get cartridge states of your Brother printer.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://192.168.178.6/general/information.html 3600
Change IP to your needs
Source: Forum
Tested with MFC-9142CDN, should work with DCP-9015 CDW DCP-9020 HL-3140 CW HL-3150 CDN HL-3170 MFC-9130 MFC-9140 MFC-9330 MFC-9340 attr DEVICE userattr reading01Name reading01Regex reading02Name reading02Regex reading03Name reading03Regex reading04Name reading04Regex attr DEVICE httpVersion 1.1 attr DEVICE reading01Name Yellow attr DEVICE reading01Regex \(Y\)\*\*.{9}\((\d{1,3}\.\d{1,2})%\) attr DEVICE reading02Name Cyan attr DEVICE reading02Regex \(C\)\*\*.{9}\((\d{1,3}\.\d{1,2})%\) attr DEVICE reading03Name Magenta attr DEVICE reading03Regex \(M\)\*\*.{9}\((\d{1,3}\.\d{1,2})%\) attr DEVICE reading04Name Black attr DEVICE reading04Regex \(BK\)\*\*.{9}\((\d{1,3}\.\d{1,2})%\) attr DEVICE room Steuerung->Unused_Devices attr DEVICE stateFormat C: Cyan% M: Magenta% Y: Yellow% B: Black% attr DEVICE reading05Name Status attr DEVICE reading05RegOpt gm attr DEVICE reading05Regex 1<\/th>(.*?)< attr DEVICE model B_01c_brother_printer_cartridge_status ################################# #Brother Scanners # Brother ADS Scanners name:B_02a_brother_scanner_ads_status filter:TYPE=HTTPMOD desc: Get status of your Brother scanner.
Define a HTTPMOD device like
defmod DEVICE HTTPMOD http://192.168.133.7/ft/gen_maintenance 3600
Change IP to your needs
Source: Website.
Tested to work with ADS-1700W, possibly others. attr DEVICE userattr reading01Name reading01XPath-Strict reading02Name reading02XPath-Strict reading03Name reading03XPath-Strict reading04Name reading04XPath-Strict reading05Name reading05XPath-Strict reading06Name reading06XPath-Strict reading07Name reading07XPath-Strict reading08Name reading08XPath reading08XPath-Strict reading09Name reading09XPath-Strict reading10Name reading10XPath-Strict reading11Name reading11XPath-Strict reading12Name reading12XPath-Strict attr DEVICE httpVersion 1.1 attr DEVICE reading01Name Model attr DEVICE reading01XPath-Strict //Model_name/text() attr DEVICE reading02Name Serial_Number attr DEVICE reading02XPath-Strict //Serial_Number/text() attr DEVICE reading03Name Firmware_Version attr DEVICE reading03XPath-Strict //MainVersion/text() attr DEVICE reading04Name PickupRollerPagesThreshold attr DEVICE reading04XPath-Strict //RemainingPick/text() attr DEVICE reading05Name PickupRollerPagesUsed attr DEVICE reading05XPath-Strict //RemainingPick_current/text() attr DEVICE reading06Name ScheduledMaintenancePagesThreshold attr DEVICE reading06XPath-Strict //RemainingScheduled/text() attr DEVICE reading07Name ScheduledMaintenancePagesUsed attr DEVICE reading07XPath-Strict //RemainingScheduled_current/text() attr DEVICE reading08XPath SeparationPadPagesThreshold attr DEVICE reading08XPath-Strict //RemainingPad_Threshold/text() attr DEVICE reading09Name SeparationPadPagesUsed attr DEVICE reading09XPath-Strict //RemainingSeparation_Pad/text() attr DEVICE reading10Name ScannedPagesTotal attr DEVICE reading10XPath-Strict //ScanPage/text() attr DEVICE reading11Name RollerReplacements attr DEVICE reading11XPath-Strict //RollerReplace/text() attr DEVICE reading12Name PaperJams attr DEVICE reading12XPath-Strict //PaperJams/text() attr DEVICE stateFormat Pages: ScannedPagesTotal Modell: Model SN: Serial_Number ################################# #RESOL Solaranlage, Forum: https://forum.fhem.de/index.php/topic,86678.0.html name:C_01a_resol_solar filter:TYPE=HTTPMOD desc: Get data from your RESOL solar installation
Define a HTTPMOD device like
define Solar HTTPMOD http://192.178.002.112/dl2/live/data 300
Source: Forum attr DEVICE userattr reading01Name reading01Regex reading02Name reading02Regex reading03Name reading03Regex reading04Name reading04Regex reading05Name reading05Regex reading06Name reading06Regex timeout attr DEVICE group A_Energy attr DEVICE reading01Name Temperatur_Sensor1 attr DEVICE reading01Regex Temperatur Sensor 1:[^0-9]+([0-9\.]+) attr DEVICE reading02Name Temperatur_Sensor2 attr DEVICE reading02Regex Temperatur Sensor 2:[^0-9]+([0-9\.]+) attr DEVICE reading03Name Temperatur_Sensor3 attr DEVICE reading03Regex Temperatur Sensor 3[^0-9]+([0-9\.]+) attr DEVICE reading04Name Temperatur_Sensor4 attr DEVICE reading04Regex Temperatur Sensor 4[^0-9]+([0-9\.]+) attr DEVICE reading05Name Drehzahl_Pumpe attr DEVICE reading05Regex Drehzahl Pumpe 1[^0-9]+([0-9\.]+) attr DEVICE reading06Name Betriebsstunden attr DEVICE reading06Regex Betriebsstunden Relais 1[^0-9]+([0-9\.]+) attr DEVICE room 01 Heizungsraum attr DEVICE stateFormat Dachtemperatur: Temperatur_Sensor1 Drehzahl Pumpe: Drehzahl_Pumpe Laufzeit Heute: Tageslaufzeit attr DEVICE timeout 5ercent="([\d\.]+) attr DEVICE model C_01a_resol_solar