Skip to content

Instantly share code, notes, and snippets.

View mtongnz's full-sized avatar

Matt mtongnz

  • Auckland, New Zealand
View GitHub Profile
@hpwit
hpwit / test fastLedshow32
Last active October 15, 2023 20:18
FastLed.show on the second core esp32
#define FASTLED_SHOW_CORE 0
/ -- Task handles for use in the notifications
static TaskHandle_t FastLEDshowTaskHandle = 0;
static TaskHandle_t userTaskHandle = 0;
void FastLEDshowESP32()
{
if (userTaskHandle == 0) {
const TickType_t xMaxBlockTime = pdMS_TO_TICKS( 200 );
@ranacseruet
ranacseruet / VideoStream.php
Last active November 12, 2025 17:53
PHP VideoStream class for HTML5 video streaming
<?php
/**
* Description of VideoStream
*
* @author Rana
* @link http://codesamplez.com/programming/php-html5-video-streaming-tutorial
*/
class VideoStream
{
private $path = "";