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
// Minimal leaning pedal firmware for Arduino (Pro) Micro | |
// | |
// You need two pedals with a 3 connector microswitch: COM, NC, NO | |
// eg: https://www.aliexpress.com/item/4000136261950.html | |
// | |
// Wire it up as follows: | |
// - Arduino input PIN (in code LEFT_PEDAL, RIGHT_PEDAL) -> COM | |
// - VCC -> 10kOhm resistor -> NC | |
// - GND -> NO | |
// |
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
blueprint: | |
name: IKEA Tradfri 2-Key On/Off Light Switch Handler | |
description: Translates the on/off action of Tradfri 2-key wireless light switch into light turn on/off service calls. | |
domain: automation | |
input: | |
tradfri_switch_click: | |
name: Tradfri Switch Click Sensor | |
description: Exposed sensor of the Tradfri Switch. | |
selector: | |
entity: |
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
MISTER CUSTOM WIFI DRIVER COMPILATION GUIDE | |
Very raw documentation to how to compile a custom WiFi driver to be used with the MiSTer Linux distribution. | |
Note: this is made for MiSTer Linux branch socfpga-4.19-MiSTer, future updates may need slight changes. | |
Preparations | |
~~~~~~~~~~~~ | |
Login to MiSTer via serial console and connect your wifi stick. Use lsusb to find out your wifi stick's device ID. Eg. in my case I | |
have a Zapo RTL8188 USB stick which identifies itself as VID 0x0bda PID 0xf179. Searching on the net we can found a compatible driver | |
at https://github.com/ulli-kroll/rtl8188fu. We need to cross-compile this for ARM. |