does not direct sunlight go much higher than 100k?
According to Wikipedia direct sunlight is 32000-100000lx.
whats the max value of UVA/B? if I place the ENV in sunlight from a window I get a negative figure (not great for a greenhouse...)
UVB is almost completely filtered out by ordinary glas so you don't get meaningful results inside the greenhouse.
As the VEML6075 is end-of-life vishay doesn't offer detailed information anymore (other than the datasheet which don't tell details about the register values. As far as I found out the values returned by the library are only valid if you don't filter the light (as you do by the glas).
I have also tested the sensor and here is my understanding:
The pressure you get out by using the command "ENV.readPressure()" in your sketch is in kPa
This is an documentation problem. I have allready report it!
You can also use:
o "ENV.readPressure(MILLIBAR)"
o "ENV.readPressure(PSI)"
But ATTENTION what you get back is alwas the actual Air Pressure on your ambient hight!!!
Like Dan0 reports the pressure you see an wather maps are always the pressure on "Mean Sea Level". That's the pressure you measure and than calculated back to MSL!!!
I have allready adapt the current Arduino_MKRENV.h V1.1.0 Library with an enhancement to use
o "ENV.readPressure(MILLIBAR_MSL)"
Then you get back values as you can see on weather maps or lists... I can send my new Version if someone likes to test and use it!
The enhanced Library was not jet checked by Arduino and therefore it is necessary to include the library as “CUSTOM Library”.
In your Sketch you need to include the library with: #include <WAA_Arduino_MKRENV.h>
and exclude the original library… //#include <Arduino_MKRENV.h>
Then within the loop you can get the pressure with the command ENV.readPressure(MILLIBAR_MSL, Ambient_Hight, Outside_Temp). Here an example: OutPres = int(ENV.readPressure(MILLIBAR_MSL, 460));
So, you get back the Pressure calculated back to the Mean Sea Level and in my case the MKRENV Shield was in my Garden and we live in 460 Meter above the Sea Level. The actual temperature (needed for a more precise calculation) was grabbed from the MKRENV temperature sensor. Please see all the Details in the PDF File.
But I can’t believe that you have the same Pressure (1010mBar) for 10 days. Are you getting more pressure values with exact the same pressure or just one (before the 16th of April) and then another one (1000mBar, on the 27th morning)?
andreas_waldherr:
But I can't believe that you have the same Pressure (1010mBar) for 10 days. Are you getting more pressure values with exact the same pressure or just one (before the 16th of April) and then another one (1000mBar, on the 27th morning)?
Cheers Andreas
exact same reading, multiple readings, could be my mapping but I will check and see