Forum Replies Created
-
AuthorPosts
-
uRADMonitor
KeymasterPlease 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; } }uRADMonitor
KeymasterHi 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_NAMEuRADMonitor
KeymasterNew coordinates are in place!
uRADMonitor
KeymasterHi Peter, thanks, and welcome to the network!
uRADMonitor
KeymasterThanks!
uRADMonitor
KeymasterHello 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.
uRADMonitor
KeymasterHi 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.
uRADMonitor
KeymasterIt’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.
uRADMonitor
KeymasterHi 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.
uRADMonitor
KeymasterThat looks great David. All the code and details would make a good topic for a dedicated blog post, would you be interested in writing one? It’s a better way to share interesting things then this forum, where the high number of topics tend to cover previous entries. I think your account has the right privileges already.
uRADMonitor
KeymasterChecking the data at highest resolution shows a single minute entry going up to maximum. This is an error and should be discarded.
Attachments:
uRADMonitor
KeymasterI think yes, but I’ll have to read more on the protocol for that. Any hints for a quicker path?
uRADMonitor
KeymasterCoordinates updated to 30.312637, -81.776612
Thanks,
RaduuRADMonitor
KeymasterNew coordinates are in place. Thanks
uRADMonitor
KeymasterThat is a reasonable explanation. Hopefully we’ll see more units in that area soon.
-
AuthorPosts
