For example, using NumericUpDown (holding down up or down button) repeatedly changes parameter (e.g. vital sign)
If set to auto-apply, repeatedly triggers a reset of Patient baseline Timers... shows as stuttering Tracings (e.g. string of P waves)
Solution: time smoothing. Maybe only auto-apply vital signs once per second? Save changes to a buffer and pass the buffer every second? Using a while(true) { Task.Sleep(1000); pass_buffer_to_patient(); } loop?
For example, using NumericUpDown (holding down up or down button) repeatedly changes parameter (e.g. vital sign) If set to auto-apply, repeatedly triggers a reset of Patient baseline Timers... shows as stuttering Tracings (e.g. string of P waves)
Solution: time smoothing. Maybe only auto-apply vital signs once per second? Save changes to a buffer and pass the buffer every second? Using a while(true) { Task.Sleep(1000); pass_buffer_to_patient(); } loop?