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
| // Determine DS18B20 addresses (thanks ChatGPT) | |
| // | |
| // How to use | |
| // | |
| // In Arduino IDE, install OneWire and DallasTemperature (Library Manager). | |
| // | |
| // Wire all DS18B20 sensors in parallel on the same data line with a 4.7 kΩ pull-up from DQ to Vdd. | |
| // | |
| // Vdd → 3.3V or 5V | |
| // |
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
| // Determine DS18B20 addresses (thanks ChatGPT) | |
| // | |
| // How to use | |
| // | |
| // In Arduino IDE, install OneWire and DallasTemperature (Library Manager). | |
| // | |
| // Wire all DS18B20 sensors in parallel on the same data line with a 4.7 kΩ pull-up from DQ to Vdd. | |
| // | |
| // Vdd → 3.3V or 5V | |
| // |
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
| gl.setup(NATIVE_WIDTH, NATIVE_HEIGHT) | |
| node.alias "looper" | |
| local Looper = function(file) | |
| local vid = resource.load_video(file, false, true) | |
| local function draw() | |
| util.draw_correct(vid, 0, 0, WIDTH, HEIGHT) | |
| return true | |
| end | |
| local function set_running(running) |
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
| splunk show cluster-bundle-status | grep -A5 site1 | paste -d " " - - - - - - - | sed -r -e 's/\t/ /g' -e 's/(.uto)?.asu.edu//g' -e 's/[[:alnum:]]\{8\}(-[[:alnum:]]\{4\}){3}-[[:alnum:]]\{12\}//g' -e 's/[[:blank:]]*site1[[:blank:]]*/ /g' -e 's/_bundle//g' -e 's/_validat(ed|ion_)//g' -e 's/_required_apply//g' -e 's/--//g' | sort -V | column -t |