Ejemplo n.º 1
0
        private void buttonDebugSetCutoffValue_Click(object sender, EventArgs e)
        {
            float value = float.Parse(textBoxDebugSetCutoffValue.Text);
            float gain  = ConfigClass.deviceGainCH1;

            value = value / gain;
            com.SetCutoffValueCH1(value);

            textBoxDebugInstructionPool.Text += "SetCutoffValue(" + value + ") " + textBoxDebugSetCutoffValue.Text + "\r\n";
            FormCustomConsole.WriteLine("SetCutoffValue(" + value + ")" + textBoxDebugSetCutoffValue.Text);
        }