Matt Turner

Results 14 comments of Matt Turner

Hey @snikul I've just had exactly the same problem . The only way I've been able to resolve this is to disable Realtime Protection in Windows Defender. Everything seems to...

I've hit a similar issue and it looks like PlatformIO now outputs the error code from the failing test. In my case, when I forget to mock an Arduino method...

Ah thanks, I hadn't tested without those values. I've made them optional now. What was the log message you got?

I've just removed the extra settings from configuration.yaml and confirmed it now works correctly.

Thanks @ikemtz - this worked perfectly for me and seems an intuitive solution

I have run into this issue with a DevContainer on Windows. The tests run from the CLI but fail in VS Code. The solution for me was to comment out...

I've been able to resolve this issue with: ``` class Entity(ClimateEntity): def __init__(self): self._enable_turn_on_off_backwards_compatibility = False @property def supported_features(self): return ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.TURN_ON | ClimateEntityFeature.TURN_OFF ``` I've fixed it in...

Great! Glad it works for you.

I have applied the following path manually to the Framework library `C:\Users\User\.platformio\packages\framework-arduinoespressif8266\libraries\ESP8266WiFi\src\include\UdpContext.h` and can now compile: ``` #define DEBUGV(...) \ do \ { \ (void)0; \ } while (0) ```...

I've just hit this problem in PlatformIO and it was because both the PlatformIO and Arduino library managers only have v0.1.1 which doesn't have that type. I'm using the synchronous...