Skip to content

Instantly share code, notes, and snippets.

@bademux
bademux / ws2812.fs
Created May 3, 2020 12:57 — forked from TG9541/ws2812.fs
STM8 eForth WS2812 demo with tested timing
\ A STM8 eForth WS2812 demo with tested timing
\ 8 x WS2812B on PCB with 470µF capacitor at 5V supply
\ 3.3V MINDEV: PB4 with 1K pull-up to 5V works well
\res MCU: STM8S103
\res export PB_DDR PB_ODR PB_CR1
#require ]B!
#require ]CB
@bademux
bademux / latest-widevine.sh
Created February 9, 2018 21:22 — forked from ruario/intro-latest-widevine.md
Fetches the latest Linux Widevine binary so that it can be used by Vivaldi.
#!/usr/bin/env bash
available () {
command -v $1 >/dev/null 2>&1
}
# Make sure we have wget or curl
if available wget; then
SILENT_DL="wget -qO-"
LOUD_DL="wget"