!7 sclass FreeSystemMemory extends DynBigNumber { bool inGigabytes; S switchableFields() { ret 'inGigabytes; } start { setDescription("FREE MEMORY"); doEveryAndNow(4000, r actualUpdate); } void actualUpdate { //time "FSM" { // usually 2 - 15 ms setValue(str_toGBorMB(inGigabytes, freeSystemMemory())); //} } }