Hey guys!
How do I make this conversion for the Optical Signal appear in the correct pattern?
Example;
Hey guys!
Hey guys!
How do I make this conversion for the Optical Signal appear in the correct pattern?
Example;
Hey guys!
Ask your device manufacturer, this can not magically compute without their help
In our device from some chinese brand this is how we compute this as per their support
I’m going to use your data sample data 154 and 32 respectively the result is -18 and -24, take it with a grain of salt!
console.log(Math.ceil(30 + (Math.log10((154 * (Math.pow(10,-7))))*10))); /* -18 */
console.log(Math.ceil(30 + (Math.log10((32 * (Math.pow(10,-7))))*10))); /* -24 */
Thanks!