Forum Replies Created

Viewing 15 posts - 256 through 270 (of 774 total)
  • Author
    Posts
  • in reply to: Interested in uradmonitor #5711
    uRADMonitor
    Keymaster

    Hi there,

    Are you interested in the model A unit?

    in reply to: Fibaro Home Center 2 integration #5693
    uRADMonitor
    Keymaster

    Sounds really interesting! Please share more on this, and a few pictures if you set it up!

    in reply to: Not able to connect to the A3 #5692
    uRADMonitor
    Keymaster

    Yes,

    There are three sounds that can be produced by the A3:

    a) one short beep at startup
    b) two long beeps anytime when the Geiger tube inverter fails to produce 380V
    c) three long beeps in case of network failure:
    — for Ethernet this can be due to missing DHCP settings
    — for Wifi this is due to being unable to connect to the AP (low signal, invalid credentials)
    — for LoRaWAN, unable to join the gateway
    — for GSM, unable to perform a GPRS attach

    in reply to: VOC capabilities #5625
    uRADMonitor
    Keymaster

    Hello Cane,

    Sorry to hear about your health issues.

    The BME680 is a mems sensor, but for detecting VOC it operates on the same principle like any other semiconductor / metal oxide sensor. Read on that here: http://www.edaphic.com.au/gas-detection-encyclopedia/semiconductor-sensors/
    The sensor initiates REDOX chemical reactions on a heated filament, resulting in ionised local air and as a result modified electrical resistance. A cleaner air will produce less such reactions, resulting in poor conductivity and increased resistance, while a polluted air will increase conductivity resulting in lower resistance.

    Given the existence of many different gases / vapours / chemicals, any ppm would be an approximation for a particular class of substances. Their molar mass / burn rate / ionising resulting compounds and multiple other properties and complicated chemistry, make it impossible to compute an absolute ppm level, or to identify the substances.

    On the other hand it offers a clear indication of changes in the air composition, and since the uRADMonitor records all data online, you have access to a history chart and you can correlate that to your condition. It will help you link the numbers to various emissions and their effect on your health.

    Please have a look on the uRADMonitor A3, here. There is also the uRADMonitor INDUSTRIAL, that has 4 slots where we can install 4 sensors for 4 different gases, there’s a big list at the bottom, see it here.

    in reply to: VOC Value flat at top #5566
    uRADMonitor
    Keymaster

    Thank you for your report @asobig, I hope to have an answer soon.

    in reply to: Access historical radiation data #5511
    uRADMonitor
    Keymaster

    That is correct. You also need to select the unit you wish to view.

    in reply to: Introduce Yourself! #5508
    uRADMonitor
    Keymaster

    Hi Moz, welcome to the network!

    in reply to: Weather Display Integration #5507
    uRADMonitor
    Keymaster

    Excellent! Please share a few screenshots with all this.

    in reply to: Access historical radiation data #5506
    uRADMonitor
    Keymaster

    Hello Peter,

    uRADMonitor has gathered an impressive amount of data since the project started. Public access is granted to the last 2 months of data only. For each data call, you should request not more than 30 days of data. What this means is that for any active unit on the map, you can look at radiation data for December or January.

    Access to full database is possible.

    in reply to: O2 Levels #5503
    uRADMonitor
    Keymaster

    That robot looks awesome! Yes, for O2, the return is the percentage. As for ppm, I will get back to you on email.

    in reply to: Weather Display Integration #5502
    uRADMonitor
    Keymaster

    Awesome,

    Let me know if there is anything I can do to help.

    in reply to: Unit offline #5493
    uRADMonitor
    Keymaster

    Hi, I just sent it via email. Please make sure your usbAsp is set to 3.3V! This is important, or you risk damaging the model A board.

    in reply to: Office Air Quality #5491
    uRADMonitor
    Keymaster

    Thanks for the “hands-on” data . I can confirm CO2 is bad, especially when you need to do sensitive work as it’s getting harder to concentrate.

    Flag changed to the right one.

    in reply to: Incorrect Temp and Humidity #5490
    uRADMonitor
    Keymaster

    Hi Jeff,

    It’s no bug, but the server does additional compensation over the measured data. Here, the internal heating of the electronics produces a drift. Therefore, the correct info is displayed on the server. The best way to get the data is via the server API, presented ni the Dashboard.

    In later firmware versions, the local data is set to match the server data. Would you like to update your unit’s firmware? It’s easy, see: https://www.uradmonitor.com/uradmonitor-model-a3-firmware-upgrade/

    in reply to: Jumps in measured data #5485
    uRADMonitor
    Keymaster

    Yes, that would work too. Something similar was added in firmware v130 as a fix:

    // an uint16_t stores 16 bits, we use first bit for sign, and following 15 bits for number (0..32767)
    // result is divided by 100 for a real with 2 decimals, max is 327.00
    uint16_t di(double val) {
    	uint16_t res = 0;
    	uint16_t mask = 1<<15;
    	if (val > 327 || val < -327) return res;
    	if (val < 0) {
    		val *= -1000;
    		res = val / 10; // fix double approximation issue
    		res |= mask;
    	} else {
    		val *= 1000;
    		res = val / 10; // fix double approximation issue
    	}
    	return res;
    }
    

    and

    
    // an uint16_t stores 16 bits, we use first bit for sign, and following 15 bits for number (0..32767)
    // result is divided by 100 for a real with 2 decimals, max is 327.00
    double id(uint16_t val) {
    	double res = 0;
    	uint16_t mask = 1<<15;
    	// check negative number
    	if (val & mask) {
    		val &= ~mask; // remove sign bit
    		res = val;
    		res = -res;
    	} else {
    		res = val;
    	}
    	res /= 100.0; // restore the 2 decimals
    	return res;
    }
    

    It’s pretty much the same thing.

Viewing 15 posts - 256 through 270 (of 774 total)