当前位置: 首页>>代码示例>>C#>>正文


C# ReceivedCommand.ReadBinFloatArg方法代码示例

本文整理汇总了C#中CommandMessenger.ReceivedCommand.ReadBinFloatArg方法的典型用法代码示例。如果您正苦于以下问题:C# ReceivedCommand.ReadBinFloatArg方法的具体用法?C# ReceivedCommand.ReadBinFloatArg怎么用?C# ReceivedCommand.ReadBinFloatArg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CommandMessenger.ReceivedCommand的用法示例。


在下文中一共展示了ReceivedCommand.ReadBinFloatArg方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: OnReceiveBinaryFloatSeries

 // Callback function To receive the binary float series from the Arduino
 void OnReceiveBinaryFloatSeries(ReceivedCommand arguments)
 {
     if (_receivedBinaryCount % 100 == 0)
             Console.WriteLine("Received value: {0}", arguments.ReadBinFloatArg());
     if (_receivedBinaryCount == 0)
     {
         // Received first value, start stopwatch
         _beginTime = Millis;
     }
     else if (_receivedBinaryCount == SeriesLength - 1)
     {
         // Received all values, stop stopwatch
         _endTime = Millis;
         Console.WriteLine("{0} milliseconds per {1} items = is {2} ms/item", _endTime - _beginTime, SeriesLength, (_endTime - _beginTime) / (float)SeriesLength);
         _receiveBinaryFloatSeriesFinished = true;
     }
     _receivedBinaryCount++;
 }
开发者ID:c37-cae,项目名称:T-Bone,代码行数:19,代码来源:SendAndReceiveBinaryArguments.cs

示例2: OnPlotDataPoint

        // Callback function that plots a data point for the current temperature, the goal temperature,
        // the heater steer value and the Pulse Width Modulated (PWM) value.
        private void OnPlotDataPoint(ReceivedCommand arguments)
        {
            var time = arguments.ReadBinFloatArg();
            var currTemp = arguments.ReadBinFloatArg();
            var goalTemp = arguments.ReadBinFloatArg();
            var heaterValue = arguments.ReadBinFloatArg();
            var heaterPwm = arguments.ReadBinBoolArg();

            _chartForm.UpdateGraph(time, currTemp, goalTemp, heaterValue, heaterPwm);
        }
开发者ID:nkiest,项目名称:Arduino-Libraries,代码行数:12,代码来源:TemperatureControl.cs

示例3: OnReceiveBinaryFloatSeries

        // Callback function To receive the binary float series from the Arduino
        void OnReceiveBinaryFloatSeries(ReceivedCommand arguments)
        {
            _receivedBytesCount += CountBytesInCommand(arguments, false);

            if (_receivedItemsCount % (SeriesLength / 10) == 0)
                    Console.WriteLine("Received value: {0}", arguments.ReadBinFloatArg());
            if (_receivedItemsCount == 0)
            {
                // Received first value, start stopwatch
                _beginTime = Millis;
            }
            else if (_receivedItemsCount == SeriesLength - 1)
            {
                // Received all values, stop stopwatch
                _endTime = Millis;
                var deltaTime = (_endTime - _beginTime);
                Console.WriteLine("{0} milliseconds per {1} items = is {2} ms/item, {3} Hz",
                    deltaTime,
                    SeriesLength,
                    (float)deltaTime / (float)SeriesLength,
                    (float)1000 * SeriesLength / (float)deltaTime
                    );
                Console.WriteLine("{0} milliseconds per {1} bytes = is {2} ms/byte,  {3} bytes/sec, {4} bps",
                    deltaTime,
                    _receivedBytesCount,
                    (float)deltaTime / (float)_receivedBytesCount,
                    (float)1000 * _receivedBytesCount / (float)deltaTime,
                    (float)8 * 1000 * _receivedBytesCount / (float)deltaTime
                    );
                _receiveBinaryFloatSeriesFinished = true;
            }
            _receivedItemsCount++;
        }
开发者ID:nirlevi5,项目名称:bgumodo_ws,代码行数:34,代码来源:SendAndReceiveBinaryArguments.cs

示例4: OnPlotDataPoint

        // Callback function that plots a data point for the current temperature, the goal temperature,
        // the heater steer value and the Pulse Width Modulated (PWM) value.
        private void OnPlotDataPoint(ReceivedCommand arguments)
        {   
            // Plot data if we are accepting data
            if (!AcceptData) return;

            // Get all arguments from plot data point command
            var time        = arguments.ReadBinFloatArg();
            time        = (TimeUtils.Millis-_startTime)/1000.0f;
            var currTemp    = arguments.ReadBinFloatArg();
            var goalTemp    = arguments.ReadBinFloatArg();
            var heaterValue = arguments.ReadBinFloatArg();
            var heaterPwm   = arguments.ReadBinBoolArg();

            // Update chart with new data point;
            _chartForm.UpdateGraph(time, currTemp, goalTemp, heaterValue, heaterPwm);
        }
开发者ID:DiLRandI,项目名称:Arduino-CmdMessenger,代码行数:18,代码来源:TemperatureControl.cs


注:本文中的CommandMessenger.ReceivedCommand.ReadBinFloatArg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。