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
| [2024-12-07 15:03:40,202] [kometa.py:267] [INFO] |====================================================================================================| | |
| [2024-12-07 15:03:40,202] [kometa.py:268] [INFO] | | | |
| [2024-12-07 15:03:40,202] [kometa.py:269] [INFO] | __ ___ ______ ___ ___ _______ __________ ___ | | |
| [2024-12-07 15:03:40,202] [kometa.py:270] [INFO] | | |/ / / __ \ | \/ | | ____|| | / \ | | |
| [2024-12-07 15:03:40,202] [kometa.py:271] [INFO] | | ' / | | | | | \ / | | |__ `---| |---` / ^ \ | | |
| [2024-12-07 15:03:40,202] [kometa.py:272] [INFO] | | < | | | | | |\/| | | __| | | / /_\ \ | | |
| [2024-12-07 15:0 |
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: Reminder to water a plant | |
| description: 'Sends a daily notification with a water reminder for plants, until the plants have been watered. An optional image can be attached to help identify the plant.' | |
| domain: automation | |
| input: | |
| plant_date: | |
| name: Date sensor | |
| description: "This entity will hold the date of the next time a plant needs watering. It needs to be an input_datetime helper entity set to 'Date'." | |
| selector: | |
| entity: |
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
| if (!e131.isEmpty()) { | |
| e131_packet_t packet; | |
| e131.pull(&packet); // Pull packet from ring buffer | |
| if (htons(packet.universe) == UNIVERSE) { | |
| for (int i = 0; i < NUM_PIXELS; i++) { | |
| int j = i * 3 + 1; | |
| pixels.setPixelColor(i, packet.property_values[j], packet.property_values[j+1], packet.property_values[j+2]); | |
| } | |
| pixels.show(); |
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
| /* | |
| DigitalReadSerial | |
| Reads a digital input on pin 2, prints the result to the Serial Monitor | |
| This example code is in the public domain. | |
| http://www.arduino.cc/en/Tutorial/DigitalReadSerial | |
| */ |
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
| /* | |
| DigitalReadSerial | |
| Reads a digital input on pin 2, prints the result to the Serial Monitor | |
| This example code is in the public domain. | |
| http://www.arduino.cc/en/Tutorial/DigitalReadSerial | |
| */ |
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
| /* FreqMeasureMulti - Example with serial output | |
| * http://www.pjrc.com/teensy/td_libs_FreqMeasure.html | |
| * | |
| * This example code is in the public domain. | |
| * | |
| * I connected PIN 4 to PIN 6, PIN 4 to PIN 10 and PIN 3 to PIN 9 | |
| * Results for Serial Output "n, 1463.99, 50.0000000000, 341520.84" | |
| * | |
| * Uncomment line 95 to see last value change | |
| * |
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
| /* FreqMeasureMulti - Example with serial output | |
| * http://www.pjrc.com/teensy/td_libs_FreqMeasure.html | |
| * | |
| * This example code is in the public domain. | |
| * | |
| * I connected PIN 4 to PIN 6, PIN 4 to PIN 10 and PIN 3 to PIN 9 | |
| * Results for Serial Output "n, 1463.99, 50.0000000000, 341520.84" | |
| * | |
| * Uncomment line 95 to see last value change | |
| * |
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
| /* FreqMeasureMulti - Example with serial output | |
| * http://www.pjrc.com/teensy/td_libs_FreqMeasure.html | |
| * | |
| * This example code is in the public domain. | |
| * | |
| * I connected PIN 4 to PIN 6, PIN 4 to PIN 10 and PIN 3 to PIN 9 | |
| * Results for Serial Output "n, 1463.99, 50.0000000000, 341520.84" | |
| * | |
| * Uncomment line 95 to see last value change | |
| * |
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
| /* FreqMeasureMulti - Example with serial output | |
| * http://www.pjrc.com/teensy/td_libs_FreqMeasure.html | |
| * | |
| * This example code is in the public domain. | |
| * | |
| * I connected PIN 4 to PIN 6, PIN 4 to PIN 10 and PIN 3 to PIN 9 | |
| * Results for Serial Output "n, 1463.99, 50.0000000000, 341520.84" | |
| * | |
| * Uncomment line 95 to see last value change | |
| * |
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
| #!/bin/bash | |
| # chkconfig: 2345 90 90 | |
| # description: inetmon | |
| ### BEGIN INIT INFO | |
| # Provides: inetmon | |
| # Required-Start: networking | |
| # Required-Stop: networking | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Description: Start the program |
NewerOlder