wystewart

Results 11 comments of wystewart

how does the phone app deal with motion/AI notification without presumably exceeding the API limits?

yes frigate is possible with the wyzebridge docker add-on for HA and that works without the RSTP firmware. Also Wyze pulled all the RSTP firmware recently. But both frigate and...

https://github.com/mrlt8/docker-wyze-bridge Becoming wyze hater too. They been around long enough to provide an API for HA and other automation software. They are great cameras for the price, but the lack...

+1 but it would be even better if this integration used the bridge RTSP and snapshot api to expose HA native cameras. Right now to turn off and on the...

you need to modify filesupport.cpp and .h for your board. The library only supports M5STack and WIOTerminal at the moment. From wiki: SD card access is strongly hardware dependent, so...

thank you. And you did acknowledge my post with a thumbs up, so no apology needed for "crazy slow response". Go ahead and close this ticket since it was informational...

i also added this to misc.h. i haven't checked yet if stm32 has a native sqrt implementation. #if defined(ARDUINO_ARCH_STM32) #include "Arduino.h" #define TGX_ON_ARDUINO #define TGX_USE_FAST_INV_SQRT_TRICK #define TGX_USE_FAST_SQRT_TRICK #define TGX_USE_FAST_INV_TRICK #endif...

the datasheet indicates that 66us is needed between i2c transactions. On faster processors this does not seem to be met with this library. add delayMicroseconds(66); before the return in i2cWriteBytes...

both are correct. setCapacity will call enterConfig as long as enterConfig has not been previously called (without parameters or with true as parameter). However if you call enterConfig with no...

Ok, I assumed that FT_Lbrary needed to be independent for each instance and since g_NeedInitialize is protecting FT_Lbrary the same could be said for that too. I'll do some tests...