Skip to content

Instantly share code, notes, and snippets.

@hualro
Created April 25, 2019 19:13
Show Gist options
  • Save hualro/af54879da14f459bc2fec9f33ad7e820 to your computer and use it in GitHub Desktop.
Save hualro/af54879da14f459bc2fec9f33ad7e820 to your computer and use it in GitHub Desktop.
function asEV(lux) {
return Math.log2(lux/2.5);
}
function asLux(ev) {
return Math.pow(2, ev) * 2.5;
}
function asLux(fc) {
return fc * 10.76;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment