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
| # This line includes all the standard macros. | |
| [include klipper-macros/*.cfg] | |
| # Uncomment to include features that require specific hardware support. | |
| # LCD menu support for features like bed surface selection and pause next layer. | |
| [include klipper-macros/optional/lcd_menus.cfg] | |
| # Optimized bed leveling | |
| [include klipper-macros/optional/bed_mesh.cfg] | |
| [include macro.cfg] |
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
| CONFIG_TARGET_x86=y | |
| CONFIG_TARGET_x86_64=y | |
| CONFIG_TARGET_x86_64_DEVICE_generic=y | |
| CONFIG_DEVEL=y | |
| CONFIG_TOOLCHAINOPTS=y | |
| CONFIG_BUSYBOX_CUSTOM=y | |
| CONFIG_ATH10K_LEDS=y | |
| CONFIG_ATH10K_THERMAL=y | |
| CONFIG_ATH9K_HWRNG=y | |
| CONFIG_ATH9K_SUPPORT_PCOEM=y |
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
| --- | |
| substitutions: | |
| devicename: 'picow' | |
| upper_devicename: 'PicoWireless' | |
| logger_level: 'INFO' | |
| esphome: | |
| name: ${devicename} | |
| project: | |
| name: "jitter.eu" |
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
| #$ esphome -s devicename kitchenstrip -s upper_devicename KitchenStrip -s restore_from_flash True run gosund_strip.yaml --device /dev/cu.usbserial-2230 | |
| --- | |
| substitutions: | |
| devicename: 'gosundstrip' | |
| upper_devicename: 'GosundStrip' | |
| devicecomment: 'https://www.amazon.de/gp/product/B09JVSB9LD?psc=1' | |
| logger_level: 'WARN' | |
| restore_from_flash: 'False' | |
| esp8266: |
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
| #$ esphome -s devicename bathmirrorheating -s upper_devicename BathMirrorHeating run yunshanesp8266.yaml --device /dev/cu.usbserial-2230 | |
| --- | |
| substitutions: | |
| devicename: 'yunshanesp8266' | |
| upper_devicename: 'Yunshan ESP8266' | |
| devicecomment: 'https://arduinoplusplus.wordpress.com/2018/08/28/home-automation-and-the-internet-of-things-the-start/' | |
| logger_level: 'INFO' | |
| esphome: | |
| name: ${devicename} |
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
| # $OpenBSD: smtpd.conf,v 1.9 2016/05/03 18:43:45 jung Exp $ | |
| # tables | |
| table aliases file:/etc/mail/aliases | |
| table domains file:/etc/mail/domains | |
| table passwd file:/etc/mail/passwd | |
| table secrets file:/etc/mail/secrets | |
| table deny db:/etc/mail/deny.db | |
| table receip db:/etc/mail/receip.db |
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
| # This line includes all the standard macros. | |
| [include klipper-macros/*.cfg] | |
| # Uncomment to include features that require specific hardware support. | |
| # LCD menu support for features like bed surface selection and pause next layer. | |
| [include klipper-macros/optional/lcd_menus.cfg] | |
| # Optimized bed leveling | |
| [include klipper-macros/optional/bed_mesh.cfg] | |
| [include macro.cfg] |
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
| // https://gist.github.com/gretel/3add6f08774f930ef0eaff03b847db64 | |
| #include "esphome.h" | |
| static const char *const TAG = "GP2Y1010AU0F.sensor"; | |
| // measure while the sensor is running | |
| #define VOLTAGE_VREF 4.62 | |
| #define PIN_ADC 5 | |
| #define PIN_EMT 6 |
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
| # $OpenBSD: httpd.conf,v 1.20 2018/06/13 15:08:24 reyk Exp $ | |
| chroot "/zfs/videos" | |
| logdir "/var/log" | |
| server "*" { | |
| listen on 10.0.100.20 port 8442 | |
| tcp nodelay | |
| tcp sack | |
| tcp socket buffer 65536 |
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
| #!/usr/bin/env python3 | |
| from flask import Flask, request | |
| from pid.decorator import pidfile | |
| from flask_apscheduler import APScheduler | |
| import ipaddress | |
| import setproctitle | |
| import subprocess | |
| import socket |