XZ3RO Posted September 18, 2014 at 12:26 PM Share Posted September 18, 2014 at 12:26 PM Hallo @ all Wie bekommt ein Noob Zugriff auf das Stepper Brick, über das Master Brick. Wie bekommt man alle infos zu denn Bricks die im Stapel sind. Hatte was gelesen mit enumeration Wie kann ich das denn umsetzen in VB.NET Bitte für Anfänger. Eine Verbindung zum Master Brick bekomm ich hin aber keine infos über das Master Brick zu denn angeschlossen bricks. Quote Link to comment Share on other sites More sharing options...
luxor Posted September 18, 2014 at 01:01 PM Share Posted September 18, 2014 at 01:01 PM Moin hast du dir den schon die Dokumentation Durchgelesen und die Beispiele Versucht? http://www.tinkerforge.com/de/doc/Software/Bricks/Stepper_Brick_VBNET.html Quote Link to comment Share on other sites More sharing options...
XZ3RO Posted September 18, 2014 at 02:06 PM Author Share Posted September 18, 2014 at 02:06 PM Das man denn Srepper über die UID ansteuern kann is mir bekannt. Mir ging es mehr um, über Master Brick die Srepper UID zu erfahren oder ihn anzusteuern. Quote Link to comment Share on other sites More sharing options...
borg Posted September 18, 2014 at 02:28 PM Share Posted September 18, 2014 at 02:28 PM Hier gibt es ein Beispiel dafür: http://www.tinkerforge.com/de/doc/Software/IPConnection_VBNET.html#enumerate Quote Link to comment Share on other sites More sharing options...
Parmaster Posted October 28, 2014 at 01:07 AM Share Posted October 28, 2014 at 01:07 AM Ich häng mich mal hier an, da ich auch dazu eine Frage hab. Und zwar hab ich ein Master, 2x Stepper und ein Dual-Relay. Nun stellt sich mir die Frage ob das so stimmt was ich gemacht habe. Hier mal der VB.NET Code Const HOST As String = "localhost" Const PORT As Int32 = 4223 Const UID As String = "xxxxxxxx" Const UID_stepX As String = "xxxxxxxx" Const UID_stepY As String = "xxxxxxxx" Const UID_relay As String = "xxxxxxxx" Private Sub Init() Dim ipcon As New IPConnection() Dim master As New BrickMaster(UID, ipcon) Dim stepX As New BrickStepper(UID_stepX, ipcon) Dim stepY As New BrickStepper(UID_stepY, ipcon) Dim dual_rel As New BrickletDualRelay(UID_relay, ipcon) ipcon.Connect(HOST, PORT) End Sub Stimmt so wirklich die Initialisierung, so dass ich alles über den Master-Brick machen kann? Ich hab nämlich noch sowas gesehen in Python ipcon = IPConnection(HOST, PORT) master = Master(UID) ipcon.add_device(master) stepperx = Stepper(UID_step1) ipcon.add_device(stepperx) steppery = Stepper(UID_step2) ipcon.add_device(steppery) dr = DualRelay(UID_rel) ipcon.add_device(dr) und frage mich, wie man das "ipcon.add_device(DEVICE)" in VB macht, hab es dort nicht gefunden. Es wäre sehr nett wenn mir mal einer zeigt wie man die Bricks und Bricklets richtig initialisiert. Quote Link to comment Share on other sites More sharing options...
batti Posted October 29, 2014 at 12:19 PM Share Posted October 29, 2014 at 12:19 PM Die Initialisierung stimmt so. Der Python Code, den du gefunden hast ist alt und wird so von der API nicht mehr unterstützt. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.