Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
sc
Posted - 07/22/2019 : 04:13:03 I'd like to download history from an EMF-390 in an automated setup. Is it possible to run it in batch with command line switches? Is the source code available? Stuart
data[0] = 0xAA; data[1] = 0X55; data[2] = (temp >> 8) & 0xFF; //EMF is 16 bits the first 12 MSB are for the integer part of EMF data[3] = temp & 0xFF; // then the 4LSB are for the decimal part. e.g 1.1 ==> 0000000000010001 // EF - bits of float type data[4] = EF[0]; data[5] = EF[1]; data[6] = EF[2]; data[7] = EF[3]; // RF same as EF data = RF[0]; data[9] = RF[1]; data[10] = RF[2]; data[11] = RF[3];