WeatherDuino Forum

Full Version: Apogee SP-110
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13
Happy to report only one blip of 1 W/m2 last night so it appears we've narrowed it down to the TX board.

Will have to wait until a completely clear day to observe the readings at sunrise, noon, and sunset, compared to others near me.

Thanks.
(12-10-2017, 23:35)danner Wrote: [ -> ]... Also set the clipping to 0.


(13-10-2017, 17:30)danner Wrote: [ -> ]Happy to report only one blip of 1 W/m2 last night so it appears we've narrowed it down to the TX board.

Will have to wait until a completely clear day to observe the readings at sunrise, noon, and sunset, compared to others near me.

Thanks.

Just don't do of keeping the "clipping" at zero, a perpetual goal. It may not be possible.
For all the rest, I think that you already have the knowledge to deal with it.
(13-10-2017, 17:50)Werk_AG Wrote: [ -> ]Just don't do of keeping the "clipping" at zero, a perpetual goal. It may not be possible.
A visible transition between night and day, rather than an abrupt off and on, was what I was hoping for. Thanks.
I understand what you mean, however if you consider that, per example, a transition from 0 to 4, it's an abrupt transition, perhaps this is not the equipment you need, nor even the SP-110.
In the real world a transaction like this will happen in just a few minutes (depending on latitude an longitude, and the month of the year), perhaps less than 5 to 6 minutes). Considering the cost, compared to the alternatives, I think that its an acceptable compromise.

As a side note I'm negotiating with the guy from where you bought your SP-110, to bought one, or even more units. He seems a nice person.
True, however, 0 to 4 is much less abrupt than 0 to 15, which is what I had to previously set the clipping to. From what I can see, so far it is functioning exactly how I envisioned it should function. Watching the other solar readings near me they all show a transition rather than an on/off behavior, but that's moot since it is functioning "properly" now.

He said he was willing to ship to Europe so hope you can get a good deal from him.

Thanks again.
(13-10-2017, 19:21)danner Wrote: [ -> ]...
He said he was willing to ship to Europe so hope you can get a good deal from him.

The shipping cost to Portugal is astronomic, more than the price of the product.
I checked the price at USPS so I know he is not inflating the price. That's a thing I never understood: why the shipping costs from US to any EU country are so high.
How the Chinese have solved the problem of the shipping cost? Smile
I don't know. My sister lives in Ireland and it costs a small fortune to send her anything.
@danner: you may like this:

Even "discarding" the readings below a certain threshold, we also can make that they "appear" that are starting at 1 W/m2.
We never know the source code of "commercial products", but I will not be surprised if "solutions", like the one presented below, would be frequently used, to avoid a more complex (expensive) hardware design.
Of course, this "solution" will introduce a minimal error to all readings.

Code:
#if (Solar_Sensor == 2)      // Apogee SP-110: Self-Powered Pyranometer (Solar / UV interface R2= 4700 Ohm)
 if (RX_Data[2] < 4) RX_Data[2] = 0;        
 SolarRad = map(RX_Data[2], 4, 1023, 0, 1750);
#endif

One thing is sure: The cost of the Solar/UV interface does not reward the time and efforts that I have to spend to supporting it. So, once the board will be out of stock, it will not be publicly available again.
(13-10-2017, 19:46)Werk_AG Wrote: [ -> ]How the Chinese have solved the problem of the shipping cost?  Smile

We are told that postage is subsidized by the government. Personally, I'm willing to believe it.  Wink
(13-10-2017, 21:23)Werk_AG Wrote: [ -> ]
One thing is sure: The cost of the Solar/UV interface does not reward the time and efforts that I have to spend to supporting it. 

How much did it take hours? 10, 15, ...?  Blush
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13