larschrjensen
Denmark
Asked
— Edited
Resolved by DJ Sures!
I'm attempting write a small c++ cli program with which I can connect to and control each servo. However, I am running in to the problem of making the connection without using a gui. Does anyone have an idea of how I can listen to the eventhandler without using the gui?
What I have so far is this:
#include
#include
#include "stdafx.h"
using namespace std;
using namespace EZ_B;
using namespace System;
int main(){
EZ_B::UCEZB_Connect^ ezB_Connect1;
ezB_Connect1 = (gcnew EZ_B::UCEZB_Connect());
ezB_Connect1->Name = L"ezB_Connect1";
ezB_Connect1->Port = L"192.168.1.1:23";
ezB_Connect1->TCPPassword = nullptr;
Any help will be highly appreciated
Best regards, Lars
Do not use UCEZB_Connect because it is a graphical user control (hence the UC in the naming convention).
Use EZ_B::EZB instead...
EZ_B::EZB will provide a Connect() method which you can call directly
Thanks a million!