Example #1
0
        /// <summary>
        /// Initializes SquatCounterService class instance.
        /// </summary>
        public SquatCounterService()
        {
            _pressureWindow = new Queue <float>();

            _pressureService = new PressureSensorService();
            _pressureService.ValueUpdated += PressureSensorUpdated;
        }