You can contribute to this list by visiting https://www.vmixcall.com/turn.ashx?Array=1, then check if the addresses starting with turn: on that page are listed in the tables below. If not, please leave a comment with your findings at the bottom of this page!
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
| # This device has two chips: | |
| # - an ESP8266-based WiFi Module that talks to Tuya's cloud service (when running the stock firmware) and the on-board MCU. | |
| # - an unmarked Tuya microcontroller (a.k.a MCU) that acts as a power management chip and wakes up the WiFi Module | |
| # when motion is detected by the PIR sensor. The WiFi Module has to talk to the MCU upon power-on to prevent immediate power-off. | |
| substitutions: | |
| device_name: CHANGEME | |
| esphome: | |
| name: '${device_name}' |
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
| // https://www.shadertoy.com/view/MtXBDs | |
| // partially converted using Xaymar's shadertoy StreamFX template | |
| #define vec2 float2 | |
| #define vec3 float3 | |
| #define vec4 float4 | |
| #define ivec2 int2 | |
| #define ivec3 int3 | |
| #define ivec4 int4 | |
| #define mat2 float2x2 |
OlderNewer