Eelco

Results 43 comments of Eelco

https://github.com/eelco2k/com.tuya.zigbee forked repo has support for this one

furthermore i did disabled the SQL caching for both count(*) and SQL_CALC_FOUND_ROWS methods for performance measurements: ``` select SQL_NO_CACHE count(*) as aggregate from ( ) count_row_table; ``` AND ``` SELECT...

guest i have to use: ``` protected function mutateFormDataBeforeSave(array $data): array { $this->permissions = collect($data) ->filter(function ($permission, $key) { return !in_array($key, ['name', 'guard_name', 'select_all', 'description']); }) ->values() ->flatten(); return Arr::only($data,...

it is still a problem when i use the extra column "description" with the package: https://github.com/filamentphp/spatie-laravel-translatable-plugin When you have multiple languages the second (and maybe other extra languages) input gets...

okay, i found the issue: because the Trait Translatable of the Spatie package uses the handleRecordUpdate() method. it calls "$localeData = $this->mutateFormDataBeforeSave($localeData);" again for every translatable field. this makes $this->permissions...

isn't it the problem that your nginx uses the path /ws/ for the connection to soketi websocket server via reverse proxy. so shouldn't the client connect to: `wss://laraapp.com/ws/app/9b9a4890c38f28f43777?protocol=7&client=js&version=7.0.6&flash=false` and not...

@testuser83 use this forked repo. there your device is supported. https://github.com/eelco2k/com.tuya.zigbee/tree/SDK3/drivers/radar_sensor_2

https://github.com/JohanBendz/com.tuya.zigbee/issues/831#issuecomment-2102595271 should get you going!

@mikkelnl check my fork of repo it should be supported there https://github.com/eelco2k/com.tuya.zigbee/tree/SDK3/drivers/radar_sensor_2

make sure you install homey cli https://apps.developer.homey.app/the-basics/getting-started/homey-cli ```bash npm install --global --no-optional homey ``` clone the repo: ```bash git clone https://github.com/eelco2k/com.tuya.zigbee ``` login with your homey account via: ```bash homey...