This file contains 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
uid: OH3_Solar_Energy_Summary | |
tags: [] | |
props: | |
parameters: | |
- description: Title | |
label: Title | |
name: title | |
required: false | |
type: TEXT | |
- context: item |
This file contains 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 python | |
import sounddevice as sd | |
import sys | |
# Download the pkg file of BlackHole | |
# https://github.com/ExistentialAudio/BlackHole/releases | |
# Install BlackHole | |
# | |
# Install sounddevice | |
# pip install sounddevice --user |
This file contains 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
#include "esp32_wdt.h" | |
#include <esp32-hal-timer.h> | |
static hw_timer_t *timer = NULL; | |
/** | |
* iInterrupt service routine called when the timer expires. | |
*/ | |
void IRAM_ATTR resetModule() { | |
ets_printf("watchdog reboot\n"); |