Page 1 of 1

Floor division missing?

Posted: Wednesday 06 January 2021 18:52
by DeVille70
Does dzVents have a floor division operator, like // in python? I could not find...

Re: Floor division missing?

Posted: Wednesday 06 January 2021 19:04
by waaren
DeVille70 wrote: Wednesday 06 January 2021 18:52 Does dzVents have a floor division operator, like // in python? I could not find...
dzVents is a framework for Lua coding in domoticz. The underlying language is Lua so everything that is available in Lua is available in dzVents.

floor division in Lua is

Code: Select all

math.floor(a / b)

Re: Floor division missing?  [Solved]

Posted: Wednesday 06 January 2021 19:10
by DeVille70
Perfect, thanks.