diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 14:17:48 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 14:17:48 -0500 |
| commit | 3f05b42ab04ca4990edf0f374f02dfea7b3be10a (patch) | |
| tree | 1a68a4ada816fea29328ccc544c1dab2d467158b /ui.h | |
| parent | 8beee1dcf1baed84e4c783e2e6e81cfa70440481 (diff) | |
| download | volute-3f05b42ab04ca4990edf0f374f02dfea7b3be10a.zip | |
add ambient temperature input
Diffstat (limited to 'ui.h')
| -rw-r--r-- | ui.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -4,6 +4,9 @@ typedef struct { w_Field displacement; w_Select displacement_unit; + w_Field ambient_temperature; + w_Select ambient_temperature_unit; + int npoints; w_Field rpm[MAX_POINTS]; @@ -22,6 +25,8 @@ typedef struct { void init_ui(UI *ui); 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_map(UI *ui, int idx); void set_map_unit(UI *ui); void set_ve(UI *ui, int idx); |