sendCommand(myItem,NULL) or similar possible in a rule?

Hello is it possible to send NULL to an item in a rule?
I know it is possible with the expire bindung, but i need to set an item to null in a rule.

Thanks :slight_smile:

I know you can postUpdate(NULL) but it doesnโ€™t really make sense to sendCommand(NULL). What is the binding supposed to do with a NULL command?

And it probably will only work if you use the methods, not the Actions. I.e

myItem.postUpdate(NULL)
1 Like

Thanks,work fine. It was my fault, i did not intend to send NULL to a thing and could/should have used postUpdate in the first place.