mirror of
https://github.com/joe7575/techpack.git
synced 2024-12-26 15:37:30 +01:00
sl_controller: add battery status command.
Added $battery() function that returns battery percentage (0-100). Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
This commit is contained in:
parent
b7bdd9783e
commit
96d5ee9018
@ -130,6 +130,22 @@ sl_controller.register_function("position", {
|
||||
" returns the position '(x,y,z)' of the device\n with given number."
|
||||
})
|
||||
|
||||
sl_controller.register_action("battery", {
|
||||
cmnd = function(self)
|
||||
local meta = minetest.get_meta(self.meta.pos)
|
||||
local batpos = minetest.string_to_pos(meta:get_string("battery"))
|
||||
local batmeta = minetest.get_meta(batpos)
|
||||
local val = (sl_controller.battery_capacity -
|
||||
math.min(batmeta:get_int("content") or 0,
|
||||
sl_controller.battery_capacity))
|
||||
return 100 - math.floor((val * 100.0 / sl_controller.battery_capacity))
|
||||
end,
|
||||
help = " $battery()\n"..
|
||||
" Get charge level of battery connected to Controller.\n"..
|
||||
" Function returns percent number (0-100) where 100 means full.\n"..
|
||||
" example: battery_percent = $battery()"
|
||||
})
|
||||
|
||||
|
||||
local function formspec0(meta)
|
||||
local state = meta:get_int("state") == tubelib.RUNNING
|
||||
|
Loading…
Reference in New Issue
Block a user