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
#include "st7565lcd.h" | |
#include <SPI.h> | |
//#define USE_SPI | |
#ifdef USE_SPI | |
#ifdef ESP32 | |
SPIClass _spi(VSPI); // SPI1 | |
SPISettings _spiSettings(16000000, MSBFIRST, SPI_MODE0); | |
#else |
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
import asyncio | |
import logging | |
from signal import SIGINT, SIGTERM | |
from time import perf_counter | |
from livekit import rtc | |
import cv2 | |
import asyncio | |
LIVEKIT_URL = "" | |
LIVEKIT_TOKEN = "" |
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
<head> | |
</head> | |
<html> | |
<body> | |
<table cellpadding=5> | |
<tr><td width=auto> | |
<table style="font-size:9pt;font-family:arial" id=t0 width=100%> | |
<tr><td>Prev acc</td><td><input id=iprevac type=input value=0 size=2>-1 0 1</td></tr> | |
<tr><td>Next acc</td><td><input id=inextac type=input value=0 size=2>-1 0 1</td></tr> |
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
using System; | |
using System.Runtime.InteropServices; | |
// ReSharper disable SuspiciousTypeConversion.Global | |
// ReSharper disable InconsistentNaming | |
namespace VideoPlayerController | |
{ | |
/// <summary> | |
/// Controls audio using the Windows CoreAudio API | |
/// from: http://stackoverflow.com/questions/14306048/controling-volume-mixer |