OnOffSHIM 1,100円 ボタンスイッチでRaspberry Piの電源操作ができます https://ssci.to/3295 M5 ATOM Lite 1,300円 ESP32搭載で RTCもついてる DeepSleepが使えるので間欠動作のコントロールをさせます https://ssci.to/6262 M5Stack用ミニリレーユニット 400円 ATOM Liteにつないでボタンスイ...
cf.,https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-4-boot-flow RaspberryPi はオプションで様々な起動方法がありますが、SDカードから起動するスタンダードな起動フローが上記のものとなります。 今回の目的 Raspberry Pi の起動フローは上記のように独特ですが...
#include <iostream> #include <wiringPi/wiringPi.h> int main() { if (wiringPiSetupGpio() == -1) { std::cout << "cannot setup gpio." << std::endl; return 1; } pinMode(18, PWM_OUTPUT); pwmSetMode(PWM_MODE_MS); pwmSetClock(400); pwmSetRange(1024); while (true) { int num...