diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 14:26:11 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 14:26:11 -0500 |
| commit | 47874c2ec00339314e43d282ab2bc906e9c9ac9b (patch) | |
| tree | 97bef4da33b15adc6ef913efc22f400cc6dd0bf9 /ui.h | |
| parent | 3f05b42ab04ca4990edf0f374f02dfea7b3be10a (diff) | |
| download | volute-47874c2ec00339314e43d282ab2bc906e9c9ac9b.zip | |
add ambient pressure input
Diffstat (limited to 'ui.h')
| -rw-r--r-- | ui.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -7,6 +7,9 @@ typedef struct { w_Field ambient_temperature; w_Select ambient_temperature_unit; + w_Field ambient_pressure; + w_Select ambient_pressure_unit; + int npoints; w_Field rpm[MAX_POINTS]; @@ -27,6 +30,8 @@ void set_displacement(UI *ui); void set_displacement_unit(UI* ui); void set_ambient_temperature(UI *ui); void set_ambient_temperature_unit(UI *ui); +void set_ambient_pressure(UI *ui); +void set_ambient_pressure_unit(UI *ui); void set_map(UI *ui, int idx); void set_map_unit(UI *ui); void set_ve(UI *ui, int idx); |