out = ''
if ( getValue('manifest_refraktion.mangler.odxt') == '' )
then
out = out .. 'Manifest refraktion, o.dxt: ' .. getValue('manifest_refraktion.sf.odxt') .. ' sf'
if ( getValue('manifest_refraktion.cyl.odxt') ~= '' )
then
out = out .. ', ' .. getValue('manifest_refraktion.cyl.odxt') .. ' cyl'
end
if ( getValue('manifest_refraktion.grader.odxt') ~= '' )
then
out = out .. ', ' .. getValue('manifest_refraktion.grader.odxt') .. ' grader\n'
else
out = out .. '\n'
end
end
if ( getValue('manifest_refraktion.mangler.osin') == '' )
then
out = out .. 'Manifest refraktion, o.sin: ' .. getValue('manifest_refraktion.sf.osin') .. ' sf'
if ( getValue('manifest_refraktion.cyl.osin') ~= '' )
then
out = out .. ', ' .. getValue('manifest_refraktion.cyl.osin') .. ' cyl'
end
if ( getValue('manifest_refraktion.grader.osin') ~= '' )
then
out = out .. ', ' .. getValue('manifest_refraktion.grader.osin') .. ' grader\n'
else
out = out .. '\n'
end
end
return out
value = 0
timestamp = 0
source = ''
if( missing_eye_odxt )
then
if( missing_eye_odxt.value and missing_eye_odxt.value == '' )
then
value = ''
timestamp = missing_eye_odxt.timestamp
else
value = 'mangler'
timestamp = missing_eye_odxt.timestamp
end
end
return value, timestamp, source
value = 0
timestamp = 0
source = 'pracro'
if( missing_eye_osin )
then
if( missing_eye_osin.value and missing_eye_osin.value == '' )
then
value = ''
timestamp = missing_eye_osin.timestamp
else
value = 'mangler'
timestamp = missing_eye_osin.timestamp
end
end
return value, timestamp, source
-- Returning 0, 0 invalidates the result
value = 0
timestamp = 0
source = 0
if(phoroptor and phoroptor.osin and phoroptor.osin.sph and phoroptor.osin.sph.value and phoroptor.osin.sph.timestamp)
then
value = phoroptor.osin.sph.value
-- convert . to ,
value = string.gsub(value, '[.]', ',')
timestamp = phoroptor.osin.sph.timestamp
source = phoroptor.osin.sph.source
end
return value, timestamp, source
-- Returning 0, 0 invalidates the result
value = 0
timestamp = 0
source = 0
if(phoroptor and phoroptor.osin and phoroptor.osin.cyl and phoroptor.osin.cyl.value and phoroptor.osin.cyl.timestamp)
then
value = phoroptor.osin.cyl.value
-- convert . to ,
value = string.gsub(value, '[.]', ',')
timestamp = phoroptor.osin.cyl.timestamp
source = phoroptor.osin.cyl.source
end
return value, timestamp, source
-- Returning 0, 0 invalidates the result
value = 0
timestamp = 0
source = 0
if(phoroptor and phoroptor.osin and phoroptor.osin.axis and phoroptor.osin.axis.value and phoroptor.osin.axis.timestamp)
then
value = phoroptor.osin.axis.value
-- convert . to ,
value = string.gsub(value, '[.]', ',')
timestamp = phoroptor.osin.axis.timestamp
source = phoroptor.osin.axis.source
end
return value, timestamp, source
-- Returning 0, 0 invalidates the result
value = 0
timestamp = 0
source = 0
if(phoroptor and phoroptor.odxt and phoroptor.odxt.sph and phoroptor.odxt.sph.value and phoroptor.odxt.sph.timestamp)
then
value = phoroptor.odxt.sph.value
-- convert . to ,
value = string.gsub(value, '[.]', ',')
timestamp = phoroptor.odxt.sph.timestamp
source = phoroptor.odxt.sph.source
end
return value, timestamp, source
-- Returning 0, 0 invalidates the result
value = 0
timestamp = 0
source = 0
if(phoroptor and phoroptor.odxt and phoroptor.odxt.cyl and phoroptor.odxt.cyl.value and phoroptor.odxt.cyl.timestamp)
then
value = phoroptor.odxt.cyl.value
-- convert . to ,
value = string.gsub(value, '[.]', ',')
timestamp = phoroptor.odxt.cyl.timestamp
source = phoroptor.odxt.cyl.source
end
return value, timestamp, source
-- Returning 0, 0 invalidates the result
value = 0
timestamp = 0
source = 0
if(phoroptor and phoroptor.odxt and phoroptor.odxt.axis and phoroptor.odxt.axis.value and phoroptor.odxt.axis.timestamp)
then
value = phoroptor.odxt.axis.value
-- convert . to ,
value = string.gsub(value, '[.]', ',')
timestamp = phoroptor.odxt.axis.timestamp
source = phoroptor.odxt.axis.source
end
return value, timestamp, source