Forum Replies Created

Viewing 15 posts - 586 through 600 (of 763 total)
  • Author
    Posts
  • in reply to: uRADMonitor-D beta ready #2454
    uRADMonitor
    Keymaster

    Hi nox .

    Yes, although I’m not sure which one is going to have it first , model C (no pollution sensors but with GPS), or an model D update.

    But model D already has a generous separate EEPROM memory added there to store data while unit is offline.

    in reply to: Firmware for A2 unit. #2445
    uRADMonitor
    Keymaster

    Ok, I will get back to you shortly. 11000066 is a model A unit, so you will need the version A firmware.

    • This reply was modified 8 years, 8 months ago by uRADMonitor.
    in reply to: Firmware for A2 unit. #2443
    uRADMonitor
    Keymaster

    It is available on request, customised for a given device ID, very much like for all the model A units.

    in reply to: Hardware Conversion Factor #2399
    uRADMonitor
    Keymaster

    Thanks! It is finally functional.
    The shields are clusters of units. The bigger their size, the more units are represented. Click one or zoom in to see individual units.

    The detailed graphing is now done on the client side, you get the local timezone to the data’s time coordinates, but also zooming capabilities and more.

    in reply to: New Website Design #2397
    uRADMonitor
    Keymaster

    Zoom has been added as requested. I am not doing the small chart view when you click a unit (circle).
    The pentagons are clusters of units, showing the radiation average as label.

    Keep the good suggestions coming.

    Radu

    in reply to: The new look site. #2396
    uRADMonitor
    Keymaster

    Hi Paul,

    Indeed, I am still working on the website, particularly the small graph view and selecting the sensor at the bottom.
    The invisible part (the backend) has long been completed and I now can put it at work. The data exchange is done via clean RESTful APIs and works great. Here are a few examples, used by the front end to access data:
    http://data.uradmonitor.com/api/v1/devices
    http://data.uradmonitor.com/api/v1/devices/51000001
    http://data.uradmonitor.com/api/v1/devices/51000001/cpm
    this is a KIT1 device and has no temperature sensor.
    or
    http://data.uradmonitor.com/api/v1/devices/110000AA

    or
    http://data.uradmonitor.com/api/v1/devices/41000002

    Your suggestion for having a full screen graph view is very good and I’ll make sure we have that. Currently I need to hit the deadline on 22 Sept with my uRADMonitor-D project for the Hackaday competition, so I’ll need to finalise the website with its basic features, so that I also have the time for the uradmonitor-D firmware, but once I finish that I’ll be able to improve the website further, including customising own stations (position, alarms) but also the full screen chart view you’ve requested.

    Feel free to provide more feedback or any other ideas you’d like to see. Now it’s a good time to plan them for the new website.

    in reply to: Hardware Conversion Factor #2394
    uRADMonitor
    Keymaster

    Please use the following as a reference:

    
    /*
    ** uRADMonitor radiation detectors
    ** Version: 	0.1.0
    ** Date: 		January, 2014
    ** License:		LGPL v3
    ** Copyright: 	(C) 2009 - 2015 Radu Motisan, radu.motisan@gmail.com
    ** Description:	Used in the uRADMonitor code to identify various radiation detectors, mostly Geiger tubes
    **
    ** www.pocketmagic.net
    **
    ** This file is a part of "Portable Environmental Monitor" open source project presented on
    ** https://hackaday.io/project/4977-portable-environmental-monitor
    **
    ** This project is free software; you can redistribute it and/or modify
    ** it under the terms of the GNU Lesser General Public License as published
    ** by the Free Software Foundation; either version 3 of the License,
    ** or (at your option) any later version.
    **
    ** This program is distributed in the hope that it will be useful,
    ** but WITHOUT ANY WARRANTY; without even the implied warranty of
    ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    ** GNU Lesser General Public License for more details.
    **
    ** You should have received a copy of the GNU Lesser General Public License
    ** along with this program. If not, see <http://www.gnu.org/licenses/>.
    */
    
    #include "detectors.h"
    
    // not more than 10 chars!
    char *aux_detectorName(uint8_t param) {
    	switch (param) {
    		case GEIGER_TUBE_SBM20: 	return "SBM20";
    		case GEIGER_TUBE_SI29BG: 	return "SI29BG";
    		case GEIGER_TUBE_SBM19: 	return "SBM19";
    		case GEIGER_TUBE_LND712: 	return "LND712";
    		case GEIGER_TUBE_STS5: 		return "STS5";
    		case GEIGER_TUBE_SI22G: 	return "SI22G";
    		case GEIGER_TUBE_SI3BG: 	return "SI3BG";
    		case GEIGER_TUBE_SBM21: 	return "SBM21";
    		case GEIGER_TUBE_SBT9: 		return "SBT9";
    		case GEIGER_TUBE_SI1G:  	return "SI1G";
    		default: return "unknown";
    	}
    }
    
    float aux_detectorFactor(uint8_t param) {
    	switch (param) {
    		case GEIGER_TUBE_SBM20: 	return 0.006315;
    		case GEIGER_TUBE_SI29BG: 	return 0.010000;
    		case GEIGER_TUBE_SBM19: 	return 0.001500;
    		case GEIGER_TUBE_STS5: 		return 0.006666;
    		case GEIGER_TUBE_SI22G: 	return 0.001714;
    		case GEIGER_TUBE_SI3BG: 	return 0.631578;
    		case GEIGER_TUBE_SBM21: 	return 0.048000;
    		case GEIGER_TUBE_LND712: 	return 0.005940;
    		case GEIGER_TUBE_SBT9: 		return 0.010900;
    		case GEIGER_TUBE_SI1G:		return 0.006000;
    		default: 0;
    	}
    }
    
    in reply to: New Website Design #2391
    uRADMonitor
    Keymaster

    Hi RobHeffo!

    It’s not ready yet, I was hoping to have it going quicker, with less downtime, but there were simply too many things to change. Luckily some changes were done on the dev server previously.

    I’ll think about a way to give the zoom back, the problem was when scrolling the page up/down, it would get stuck over the map in zoom mode. I’ll think of a way to cover both.

    The sensor data can for now be only accessed via the API directly, but should get in the frontend as soon as possible. Use:
    http://data.uradmonitor.com/api/v1/devices
    or
    http://data.uradmonitor.com/api/v1/devices/ID/SENSOR_NAME

    in reply to: Please update location for 1100006E #2287
    uRADMonitor
    Keymaster

    New coordinates are in place!

    in reply to: Introduce Yourself! #2247
    uRADMonitor
    Keymaster

    Hi Peter, thanks, and welcome to the network!

    in reply to: Uranium: Twisting the Dragon's Tail #2243
    uRADMonitor
    Keymaster

    Thanks!

    in reply to: uRADMonitor API for DIY units #2220
    uRADMonitor
    Keymaster

    Hello Wolf,

    I was caught with this https://hackaday.io/project/4977-portable-environmental-monitor . Managed to finish the beta, but barely as its just before their deadline. I should be able to redirect some of my time to the API modifications.

    Wish there was more time.

    in reply to: Introduce Yourself! #2218
    uRADMonitor
    Keymaster

    Hi Chris, thanks for your interest, got your email and will be replying soon, as I’m still caught with a very tight deadline of the uRADMonitor-D enrolled in Hackaday’s #bestproduct competition part of this year’s Hackaday prize.

    in reply to: Introduce Yourself! #2153
    uRADMonitor
    Keymaster

    It’s huge …

    I’ll make sure we’ll have more detailed stats, I just need to find a little time to continue my work on the new website.

    in reply to: Introduce Yourself! #2150
    uRADMonitor
    Keymaster

    Hi David,

    with all these long term data sets, we should start generating some stats showing the extremes on the long term run 🙂 It seems Waheed has his unit indoors for now, but hopefully he’ll move it outside just to give it some extra exposure.

Viewing 15 posts - 586 through 600 (of 763 total)