コード例 #1
0
        public void SyncAmplitude()
        {
            bool channelBool = castView.GetChannel();

            WindfreakSynth.WindfreakChannel channel = windfreak.Channel(channelBool);
            castView.UpdateAmplitude(channel.Amplitude);
        }
コード例 #2
0
        public void SyncOutput()
        {
            bool channelBool = castView.GetChannel();

            WindfreakSynth.WindfreakChannel channel = windfreak.Channel(channelBool);
            castView.UpdateOutput(channel.RFOn);
        }
コード例 #3
0
        public void SyncFrequency()
        {
            bool channelBool = castView.GetChannel();

            WindfreakSynth.WindfreakChannel channel = windfreak.Channel(channelBool);
            castView.UpdateFrequency(channel.Frequency);
        }
コード例 #4
0
        public void SyncSweepSettings()
        {
            bool channelBool = castView.GetChannel();

            WindfreakSynth.WindfreakChannel channel = windfreak.Channel(channelBool);
            castView.UpdateSweepUpper(channel.SweepUpper);
            castView.UpdateSweepLower(channel.SweepLower);
            castView.UpdateSweepStepSize(channel.SweepStepSize);
            castView.UpdateSweepStepTime(channel.SweepStepTime);
            castView.UpdateSweepDirection(channel.SweepDirection);
        }