hello i am looking for a board like the 8047 who records dc signals but then replay this in another out.
can you help me?
The K8061 can do that. There are 8 analog inputs and 8 analog outputs.
i have the k8055 and i supost tha the 8061 is the same (whit more inputs and outputs) and for do that i want to do i have to do a program(in c++ o VB)for do that.
but mi experience whit this languaje is wrong
could please make o doc(for dummies like me) who explain how to program the boards?.
thanks and goodbye
sorry a was looking at the forum and i think that i can begin to do anything
i start wiht VBA looks easy
“this language is wrong”
You are suggesting “C++” and “VB” are not good?
The best way to learn is to look at the examples. If you want to be really lazy you can hack the VB example (VB is easiest to read) to just relay the input to the output)
This is messy, but open the VB (not VB_NET) example, and add these to the form.
Private Sub VScroll3_Change()
VScroll1.Value = VScroll3.Value
OutputAnalogChannel 1, VScroll1.Value
End Sub
Private Sub VScroll4_Change()
VScroll2.Value = VScroll4.Value
OutputAnalogChannel 2, VScroll2.Value
End Sub
Private Sub VScroll1_Change()
Label3.Caption = VScroll1.Value
OutputAnalogChannel 1, VScroll1.Value
End Sub
Private Sub VScroll2_Change()
Label4.Caption = VScroll2.Value
OutputAnalogChannel 2, VScroll2.Value
End Sub
There is a VScroll1_Scroll and VScroll2_Scroll, delete these (they should be _Change like the above)
To relay the digital add this to the end of the Timer1_Timer() sub
Dim ab
For ab = 0 To 4
Check3(ab).Value = Check2(ab).Value
Next ab
[code]