ultra5000 support

lacruth

Member
Join Date
Jul 2008
Location
mexicali
Posts
41
We need direct support about the ultra5000,
my techsupport contract is over, so,
I can pay for this time support if anybody can help to us.
we have 2-question
#1
I NEED STOP THE DRIVE MOVEMENT IF A DIGITAL OUTPUT IS "ON" EVEN IF THE DRIVE TRIP WAS NOT COMPLETED.
CAN SOMEONE HELP TO US?
#define HOMESW 2/* SENSOR LIM (HOME)*/
#define STARTSIGNAL 1 /*RUNNING IF PLC OK SIGNAL O:24/7*/
#define STOPSIGNAL 4 /*SIGNAL FROM DVT VISION*/
int main (void)
{
while (!StopRequested())
{
InitMotionLibrary();
AxisEnable();
MoveSetAcc(1000000);
MoveSetVel(1000000);
MoveSetDec(100000);
AxisDefinePos(0);/*INICIA AUTOMATICO*/
if ((InputGetState(STARTSIGNAL)== ON) && (InputGetState(STOPSIGNAL)== OFF))
{
MoveAbsolute(5200);
if (InputGetState(STOPSIGNAL)== ON)
MoveAbort();
while (MoveInProgress()) {/* loop */}
}
else if (((InputGetState(HOMESW)== OFF) && (InputGetState(STARTSIGNAL)== OFF)) || ((InputGetState(STOPSIGNAL)== ON) && (InputGetState(HOMESW)== OFF)))
{
MoveIncremental(-5200);
while (MoveInProgress()) {/* loop */}
}
}
AxisDisable();
return 0;
}
#2
we need the home routine
If anybody can help to us please contact at e-mail [email protected] and give us the phone num. thanks
thanks
 

Similar Topics

dear gents, I need the firmware for SERVO AMPLIFIER ULTRA5000, 2098-IPD-020 can anyone help me with this device firmware
Replies
2
Views
1,037
Hello Experts, I new here and this forum already helped me a lot to get my 2nd handed Ultra5000 communicating with my PC via Ultraware. I am a...
Replies
0
Views
1,357
Hi,I'm trying to use athe cam window(ultraware software) with the Ultra 5000 servo drive. I editted the cam table(specified input from 0 - 360...
Replies
14
Views
6,375
hello everybody!! I'm trying to run a project in a ultra 5kdrive firmw.v1.08,my ultraware software is v1.64, firmware in the drive is older than...
Replies
3
Views
2,715
hi I'm trying to change a parameter of ultra5000 since a pv1000 so, do someone knows the way to declare "n7:" file in "C" program of ultraware...
Replies
0
Views
1,355
Back
Top Bottom