Hello Robert.
You did a greate job. I have built V300 and it works nice.
But at the beginning temperature readings from the probe3 had not been updated.
Probe3 showed the fixed value what had been red at the startup.
The code TestProgram6 ran ok. I had checked with osciloscope and found that there is no request for probe3.
Then I had checked the code and found that there was no "sensor3.requestTemperatures()" at the line 279.
So I have added at the end of ''void RequestTemperatures()":
if ( tprobe3 == 1 )
{
sensor3.requestTemperatures();
}
and now it works as should work.
All of Arduino codes for V300 are missing the "sensor3.requestTemperatures()".
After I checked all Channel3 modes and, it seems, everything is fine.
Maybe it should work in different way, but for me it works like this.
Kind regrds
Gintautas
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello Robert.
You did a greate job. I have built V300 and it works nice.
But at the beginning temperature readings from the probe3 had not been updated.
Probe3 showed the fixed value what had been red at the startup.
The code TestProgram6 ran ok. I had checked with osciloscope and found that there is no request for probe3.
Then I had checked the code and found that there was no "sensor3.requestTemperatures()" at the line 279.
So I have added at the end of ''void RequestTemperatures()":
if ( tprobe3 == 1 )
{
sensor3.requestTemperatures();
}
and now it works as should work.
All of Arduino codes for V300 are missing the "sensor3.requestTemperatures()".
After I checked all Channel3 modes and, it seems, everything is fine.
Maybe it should work in different way, but for me it works like this.
Kind regrds
Gintautas
Hi Gintautas
I checked test program 6 and at ;ine 154 it does have the request temperature for probe3?
https://sourceforge.net/projects/arduinonanodewcontrollerpro/files/v300/Test%20Programs/TestProgram6.ino/download
Yes, thanks for finding the bug in firmware 313, I will post the corrections today
Cheers
Robert