-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Nullable values in write attributes procedure #566
Fix Nullable values in write attributes procedure #566
Conversation
First of all thanks for the PR! It should be as easy as replacing the value assignment with our "parse_value" helper form utils. If you want I can make the adjustment and would be great if you can test if that gives the desired behavior |
Thanks for your feedback. If I understand properly what you said, it can be fixed by changing Line 137 of matter_server/common/helpers/util.py from
to
? |
Well, yes but we need some more. We will also need a boolean option to that util function if the custom types are allowed. Want me to edit the PR to adjust the utils func so you can use it in the write command ? |
It seems that you know the project way better than I do. |
I will do so monday. I'll let you know once its ready to test |
I have modified your PR with the adjustments. Now all values that are sent to the SDK will be in the SDK's custom data types such as Nullable, uint and float32 |
I've tested both sending commands and write attribute and both still work. |
Writing attributes values with JSON data is allowed in Matter, for instance with the ACL cluster we can send this payload:
Expand
When Python parses this JSON, the
null
value is then converted to a PythonNone
. ThisNone
is not allowed by the Matter SDK, at the opposite of theNullable
type which is defined in the SDK to handle this kind of situation.This pull-request is there to fix this issue: the Python
None
is converted to a MatterNull
value of typeNullable
.