This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add the folowing helpers in Home Assistant: | |
| # Name | Entity ID | Type | |
| # ---------------------------------------------------------------------------------------------------------------- | |
| # wordclock_status | input_boolean.wordclock_status | input_boolean | |
| # Wordclock IP | input_text.wordclock_ip | input_text (Min:0 Max:100,Text) Enter the IP-Adress of your Wordclock | |
| # wordclock_ambi_b | input_number.wordclock_ambi_b | input_number (Min:0 Max:255, Step:1) | |
| # wordclock_ambi_g | input_number.wordclock_ambi_g | input_number (Min:0 Max:255, Step:1) | |
| # wordclock_ambi_r | input_number.wordclock_ambi_r | input_number (Min:0 Max:255, Step:1) | |
| # wordclock_ambi_brightness | input_number.wordclock_ambi_brightness | input_number (Min:1 Max:255, Step:1) | |
| # wordclock_display_b | input_number.wordclock_display_b | i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Update Entity Offset with Switch | |
| description: Update the offset attribute of an entity based on another sensor's | |
| state every 15min. | |
| domain: automation | |
| input: | |
| sensor_to_monitor: | |
| name: Sensor to Monitor | |
| description: The sensor whose state will be used to update the "offset" attribute | |
| selector: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Shelly BLU RC-4 Button Control (Short, Long, and Double Press) | |
| description: Automate actions using Shelly BLU RC-4's 4 buttons with different press types. | |
| domain: automation | |
| input: | |
| button_device: | |
| name: Shelly BLU RC-4 | |
| description: Select the Shelly BLU RC-4 remote. | |
| selector: | |
| device: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?PHP session_start(); ?> | |
| <!-- Einfaches Kontaktformular --> | |
| <?php | |
| include_once("kontaktformular.php"); | |
| echo kontaktformular(array("email1@adress.de","email2@adress.de"),"Kontaktformular","form1"); | |
| ?> | |
| <!-- Kontaktformular mit Datei-Upload --> | |
| <!-- Another contact-form --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?PHP | |
| function HelloWorld() { | |
| echo "Hello World"; | |
| } | |
| HelloWorld(); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de"> | |
| <?PHP | |
| //Beispiel-Datei zur Nutzung von echo_galpics.php | |
| include_once("echo_galpics.php"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a[href^="http://"]:after { | |
| content: "\f08e"; | |
| font-family: FontAwesome; | |
| font-weight: normal; | |
| font-style: normal; | |
| display: inline-block; | |
| text-decoration: none; | |
| padding-left: 3px; | |
| } | |
| /* Strip from links to own domain or with class no_icon */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Vorher (Zeile 471): | |
| echo "<li".$class."><a ".$href." title=\"".$lightbox_title." - ".$echo_text."\">"._01gallery_getThumb($galverz,stripslashes($pics['filename']),"_tb")."</a></li>\n"; | |
| // Nachher | |
| echo "<li".$class."><a ".$href." title=\"".$lightbox_title."\">"._01gallery_getThumb($galverz,stripslashes($pics['filename']),"_tb")."</a></li>\n"; |
NewerOlder