I need to reload Factory setting to my GMC-300E, which is available in: Init Setup/Factory Reset Can you please inform me how can I navigate to Init Setup?
1. Press menu(S4) key to Main menu 2. Press arrow down(S3) key to scroll down to the Init Setup menu item. 3. Press enter (S4) key to enter this menu. 4. Select Factory reset and then press the enter(S4) key to start a factory reset confirmation. 5. Press any key will toggle the confirmation YES and NO. Select YES to confirm and wait for the popup message goes away to complete the factory reset.
I have a gmc-300E and I get CPM on laptop by USB link with a Python program. I don't know how to transform these CPM to µSv/h.
I can read both the µSv/h value and CPM value on the device display but I can only get CPM on the laptop.
Is it a linear formula ? Sv/h = k*CPM. what is k value ? Is there a false time correction ? Sv/h = k* CPM / (1 - a*CPM) Is there a temperature coefficient ? What is the tube reference ?
Thank you a lot for your help !
François (From France)
The program I write is this one, but you must indent inside the test if..else: and inside the while: loop.
import serial, time
ser = serial.Serial("/dev/ttyUSB0", 57600) ser.write (("<<GETVER>>"+chr(0)).encode(encoding='utf-8')) time.sleep(1) print ((str(ser.read_all ()))[2:-1])
while True : ser.write (("<<GETCPM>>"+chr(0)).encode(encoding='utf-8')) time.sleep(1) res = ser.read_all () if len (res) == 2 : print (time.ctime() + " , " + str(res[0]*256+res[1]) + "CPM") else : print (time.ctime() + " , ERROR") time.sleep(59)