comparison Discovery/Src/base.c @ 845:17d9d6eddd8d Evo_2_23

Added new PreDiveCheck info page: In case a DiveO2 sensor is connected to the OSTC than the values of the DiveO2 internal pressure and temperature sensors may be used for predive checks. The pressure sensors is used for over / under pressure test and the values are visualized using a graph to make it easier to check if the pressure keeps stable. The temperature measurement gives an indication if the scrubber is getting active. This view is highly dependend on the surface temperature but may be useful e.g. for diving in european area. In addition the values ofthe connected sensors are shown.
author Ideenmodellierer
date Sun, 21 Jan 2024 22:24:36 +0100
parents 717b460294cd
children
comparison
equal deleted inserted replaced
844:e04d7dd199fb 845:17d9d6eddd8d
211 #include "text_multilanguage.h" 211 #include "text_multilanguage.h"
212 #include "tHome.h" 212 #include "tHome.h"
213 #include "tInfo.h" 213 #include "tInfo.h"
214 #include "tInfoLog.h" 214 #include "tInfoLog.h"
215 #include "tInfoSensor.h" 215 #include "tInfoSensor.h"
216 #include "tInfoPreDive.h"
216 #include "tMenu.h" 217 #include "tMenu.h"
217 #include "tMenuEdit.h" 218 #include "tMenuEdit.h"
218 #include "tMenuEditGasOC.h" 219 #include "tMenuEditGasOC.h"
219 #include "tStructure.h" 220 #include "tStructure.h"
220 #include "externLogbookFlash.h" 221 #include "externLogbookFlash.h"
895 case InfoPageLogList: sendActionToInfoLogList(action); 896 case InfoPageLogList: sendActionToInfoLogList(action);
896 break; 897 break;
897 case InfoPageLogShow: sendActionToInfoLogShow(action); 898 case InfoPageLogShow: sendActionToInfoLogShow(action);
898 break; 899 break;
899 case InfoPageSensor: sendActionToInfoSensor(action); 900 case InfoPageSensor: sendActionToInfoSensor(action);
901 break;
902 case InfoPagePreDive: sendActionToInfoPreDive(action);
900 break; 903 break;
901 default: sendActionToInfo(action); 904 default: sendActionToInfo(action);
902 break; 905 break;
903 } 906 }
904 break; 907 break;