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 <Arduino.h> | |
#include <array> | |
#include <memory> | |
#include "pico/async_context_threadsafe_background.h" | |
bool core1_separate_stack = true; | |
volatile bool operational = false; | |
static constexpr int BLUE_LED = D7; |
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
# start when networking is up | |
start on net-device-up IFACE!=lo | |
# stop on shutting down the system | |
stop on runlevel [016] | |
# application environment | |
# staging and development instances should use override file to define environment | |
env NODE_ENV=production | |
# respawn the job up to 10 times within a 5 second period. |
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
<?php | |
/** | |
* @see http://qafoo.com/blog/016_struct_classes_in_php.html | |
*/ | |
abstract class Struct | |
{ | |
/** | |
* Is run when reading data from inaccessible properties |