Hi, I am using a mosfet to try drive a motor from the PWM1 channel… just wondering if anyone knows how this could be done… I would like to have a scrollbar and if i change the value the speed either increases or decreases
Private Sub VScrollBar1_Scroll(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ScrollEventArgs) Handles VScrollBar1.Scroll
Label4.Text = CStr(255 - VScrollBar1.Value)
OutputAnalogChannel(1, 255 - VScrollBar1.Value)
End Sub