Hello Guest it is March 29, 2024, 08:29:29 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - NeoTO

121
PoKeys / Re: Pokeys57E Mach3 Win10 64bit
« on: May 08, 2016, 12:56:49 AM »
1. Make sure you have .NET 3.5 installed prior running PoKeys setup. Just run PoKeys application and Windows should install it automatically. After that, re-run the setup.
(The reason is that installer uses a tool from .NET 3.5 to register PoKeys communication library. We are transitioning to newer versions, but this may break compatibility with older systems...)
2. In Mach3, go to 'Function Cfg's > Reset device sel.' and restart Mach3 - this will reset the motion device selection

122
Open PoKeys application, go to Peripherals > PoExtBus and uncheck the 'PoExtBus on pins' option. By default, this should have been disabled.

123
PoKeys / Re: Pokeys57CNC -- Motors Dont move
« on: May 02, 2016, 05:30:12 AM »
Did you try checking 'Invert enabled output' in the plugin settings?

124
PoKeys / Re: Pokeys57CNC -- Motors Dont move
« on: May 01, 2016, 01:28:42 PM »
Make sure that you select 'External 4ch with IO' as Pulse engine type in the PoKeys plugin configuration.

125
PoKeys / Re: Pokeys57E,Mach4 External Push Button
« on: April 27, 2016, 12:10:42 PM »
If you look at the code in the script, you will notice that you have somewhere in the beginning

Code: [Select]
---------------------------------------------------------------
-- Signal Library
---------------------------------------------------------------
SigLib = {

Then, one block as following for each signal

Code: [Select]
[mc.<signal name>] = function (state)
 < code >
end

So, SigLib is a Table name, which contains handler functions for all signals in the list. The SigLib ends somewhere later on (around row 70) with a '}'
To add a new signal handler, make sure that you insert it in the Table and that you put a comma at the end of it.

Code: [Select]
---------------------------------------------------------------
-- Signal Library
---------------------------------------------------------------
SigLib = {
[mc.SIGNAL1] = function (state)
 < code >
end,
[mc.SIGNAL2] = function (state)
 < code >
end,
[mc.SIGNAL3] = function (state)
 < code >
end,
...

[mc.SIGNALn] = function (state)
 < code >
end
}




126
PoKeys / Re: Pokeys57E,Mach4 External Push Button
« on: April 25, 2016, 04:29:48 PM »
Hi, Troy

Please follow the tutorial on our blog page: http://blog.poscope.com/mach4-tutorial-custom-signal-mapping/

Regards,
Matevž

127
PoKeys / Re: Motion step Overflow when i use two MPG's at same time
« on: April 14, 2016, 12:15:40 AM »
We were caught up in Mach4 updates - initially, Mach4 did not support the MPG jogging and we implemented our own system that apparently fails to operate correctly since MPG support was implemented in Mach4 directly. We will check and fix the operation of it.

128
PoKeys / Re: Mach4 using 57E and kbd48CNC
« on: April 14, 2016, 12:12:52 AM »
Tig-140 contacted us by emails ([mach1mach2cnc] yahoo group) - https://groups.yahoo.com/neo/groups/mach1mach2cnc/conversations/messages/150613

129
PoKeys / Re: Windows can't start up with pokeys56u plugged in
« on: April 14, 2016, 12:10:46 AM »
Some BIOS use highly simplified USB stack that apparently isn't able to process (perfectly legit by USB standards) USB device descriptor and hangs.
We implemented the 'delayed start' option for such cases - set the amount of time the PoKeys device will wait before registering to the USB host. The setting is available in PoKeys application under Settings, start-up configuration.

130
PoKeys / Re: PoKeys 56U motor pulse train output
« on: April 14, 2016, 12:08:25 AM »
Can you give us some information on what is common on your computers? Some combination of USB hardware and sytem drivers "doesnt' like" the configuration of PoKeys device and just slows down the communication. We are trying to figure out what (HW, driver etc.) is causing this.