Home
Downloads
Mach3
Plugins
CAM Post Processors
Screensets
Purchase
Support
Forum
Tutorial Videos
Documentation
Yahoo Group
Mach Wiki
Resources
Contact Us
Links
CNCZone
German Forum
Italian Forum
Korean Forum
Portuguese (Brazil) Forum
Russian Forum (RSK CNCROUTER)
Thai Forum
Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email?
May 18, 2013, 10:28:25 PM
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
Search:
Advanced search
Select from and to languages
Chinese-simp to English
Chinese-trad to English
English to Chinese-simp
English to Chinese-trad
English to Dutch
English to French
English to German
English to Greek
English to Italian
English to Japanese
English to Korean
English to Portuguese
English to Russian
English to Spanish
Dutch to English
Dutch to French
French to English
French to German
French to Greek
French to Italian
French to Portuguese
French to Dutch
French to Spanish
German to English
German to French
Greek to English
Greek to French
Italian to English
Italian to French
Japanese to English
Korean to English
Portuguese to English
Portuguese to French
Russian to English
Spanish to English
Spanish to French
Machsupport Forum
General CNC Chat
Show"N"Tell ( Your Machines)
How to- USB powered LCD display of DRO`s
Pages:
«
1
2
3
4
5
6
7
8
9
10
»
Go Down
« previous
next »
Author
Topic: How to- USB powered LCD display of DRO`s (Read 8679 times)
0 Members and 1 Guest are viewing this topic.
lajoolaj
Active Member
Offline
Posts: 5
Re: How to- USB powered LCD display of DRO`s
«
Reply #80 on:
November 07, 2011, 05:54:59 AM »
is it possible to have two displays 4x20 thought USB???
Logged
lajoolaj
Active Member
Offline
Posts: 5
Re: How to- USB powered LCD display of DRO`s
«
Reply #81 on:
November 07, 2011, 09:17:48 AM »
on first i want have X,Y,Z,A
and on second Feed, Speed...
Logged
cd_edwards
Active Member
Offline
Posts: 29
Re: How to- USB powered LCD display of DRO`s
«
Reply #82 on:
November 07, 2011, 09:00:28 PM »
get a larger display. 4x20 is the size of the gravitech unit. Should be able to have all of that on there as it is. The Sure Electronics display I could not get working. It requires something that I didn't get figured out. I ordered a gravitech unit to replace it. The command sequence for the gravitech and the LCD Smartie display's are totally differant.
Logged
cd_edwards
Active Member
Offline
Posts: 29
Re: How to- USB powered LCD display of DRO`s
«
Reply #83 on:
November 20, 2011, 02:56:08 PM »
Here's what I've come up with in order to get rid of some latency issues. I found that the serial protocol used was quite slow and seemed to cause a slowdown in the screen update. I don't have a mill yet so I can't test it properly that way, but I've found the following macropump helps somewhat. Putting this screen update into it's own DLL plugin would be the ideal solution though. I've been looking for what other's have done regarding this, but it seems that only commercial ventures which will not share there code are available.
If getVar(1005) = 0 Then
XV = Format (GetDro(0) , "+000.0000;-000.0000")
YV = Format (GetDro(1) , "+000.0000;-000.0000")
ZV = Format (GetDro(2) , "+000.0000;-000.0000")
AV = Format (GetDro(3) , "+000.0000;-000.0000")
SendSerial "?c0?f?a?g"
SendSerial "?y0?x00 X: " &XV
SendSerial "?y1?x00 Y: " &YV
SendSerial "?y2?x00 Z: " &ZV
SendSerial "?y3?x00 A: " &AV
setVar(1005, 1)
setVar(1004, 0)
End If
If getVar(1004) = 10 Then
setVar(1004, 0)
if getVar(1000) <> Getdro(0) Then
XV = Format (GetVar(1000) , "+000.0000;-000.0000")
SendSerial "?x04?y0" &XV
setVar(1000, Getdro(0))
End If
if getVar(1001) <> Getdro(1) Then
YV = Format (GetVar(1001) , "+000.0000;-000.0000")
SendSerial "?x04?y1" &YV
setVar(1001, getDro(1))
End if
if getVaR(1002) <> Getdro(2) Then
ZV = Format (GetVar(1002) , "+000.0000;-000.0000")
SendSerial "?x04?y2" &ZV
setVar(1002, getDro(2))
End If
if getVar(1003) <> Getdro(3) Then
AV = Format (GetVar(1003) , "+000.0000;-000.0000")
SendSerial "?x04?y3" &AV
setVar(1003, getDro(3))
End If
else
setVar(1004, getVar(1004) + 1)
End If
Logged
cd_edwards
Active Member
Offline
Posts: 29
Re: How to- USB powered LCD display of DRO`s
«
Reply #84 on:
November 21, 2011, 11:33:10 PM »
If anyone is interested, I've been playing around at creating a plugin that will do basically what we want are doing with the script. It's working, but I don't have a config menu created for it so it's hardcoded for a particular comport and is not very forgiving if you suddenly remove the device. If anyone is interested, I'll hardcode a comport into the device, say #10 and upload it to this thread for people to use. Eventually I might finish it.
Logged
Ya-Nvr-No
Active Member
Offline
Posts: 401
Scuptris 3D
Re: How to- USB powered LCD display of DRO`s
«
Reply #85 on:
November 22, 2011, 05:50:44 AM »
Why not post the source and someone might just finish it for ya.
Logged
http://www.yanvrno.com
cd_edwards
Active Member
Offline
Posts: 29
Re: How to- USB powered LCD display of DRO`s
«
Reply #86 on:
November 22, 2011, 07:56:42 AM »
Umm mainly because it's a hack and not very pretty. If someone had the capability to finish, I would assume they would have just wrote it.
Logged
cd_edwards
Active Member
Offline
Posts: 29
Re: How to- USB powered LCD display of DRO`s
«
Reply #87 on:
November 30, 2011, 10:29:02 PM »
I've uploaded a version of my LCD DRO plugin to the plugins forum if anyone is interested. You will find it to be much faster than macropump.m1s. If anyone would like to see anything added, I've put my email address into the LCDDRo.txt file included with the plugin.
Logged
cd_edwards
Active Member
Offline
Posts: 29
Re: How to- USB powered LCD display of DRO`s
«
Reply #88 on:
December 04, 2011, 05:59:06 PM »
I updated the LCD DRo plugin I wrote. The comport is NOT hardcoded, but you do have to manually edit the xml file using the XML reader. I still do not have working menu's. It seems it's easy to crash Mach3 when adding menus. Anyways, it's over in the plugin's forum
Logged
danmega
Holding
Offline
Posts: 1
Re: How to- USB powered LCD display of DRO`s
«
Reply #89 on:
January 13, 2012, 11:18:52 AM »
Can I use a DB25 cable to with this lcd setup? reason being is I have a 30' run. I don't see many 50' usb cable around.
Logged
Pages:
«
1
2
3
4
5
6
7
8
9
10
»
Go Up
« previous
next »
Jump to:
Please select a destination:
-----------------------------
Mach Discussion
-----------------------------
=> General Mach Discussion
=> Mach3 under Vista
=> Mach SDK plugin questions and answers.
===> Finished Plugins for Download
=> VB and the development of wizards
=> Brains Development
=> Video P*r*o*b*i*n*g
=> Mach Screens
===> Screen designer tips and tutorials
===> Works in progress
===> Finished Screens
===> Flash Screens
===> JetCam screen designer
===> Machscreen Screen Designer
===> CVI MachStdMill (MSM)
=> Feature Requests
=> Non English Forums
===> Italian
===> French
===> Spanish
===> Chinese
===> German
===> Russian
===> Romanian
===> Japanese
===> Vietnamese
=> FAQs
-----------------------------
*****VIDEOS*****
-----------------------------
=> *****VIDEOS*****
-----------------------------
General CNC Chat
-----------------------------
=> Share Your GCode
=> Show"N"Tell ( What you have made with your CNC machine.)
=> Building or Buying a Wood routing table.. Beginnners guide..
=> Show"N"Tell ( Your Machines)
-----------------------------
G-Code, CAD, and CAM
-----------------------------
=> G-Code, CAD, and CAM discussions
=> LazyCam (Beta)
-----------------------------
Third party software and hardware support forums.
-----------------------------
=> LazyTurn
=> GearoticMotion Preliminary testing
=> Tempest Trajectory Planner
=> Contec
=> CS-Lab
=> dspMC/IP Motion Controller
=> HiCON Motion Controller
=> Third party software and hardware support forums.
=> Galil
=> Newfangled Solutions Mach3 Wizards
=> Newfangled Mill Wizard
=> Mach3 and G-Rex
=> Mesa
=> Modbus
=> NC Pod
=> PoKeys
=> SmoothStepper USB
=> Sieg Machines
=> Promote and discuss your product
-----------------------------
Tangent Corner
-----------------------------
=> Tangent Corner
=> Competitions
=> Polls
=> Bargain Basement
-----------------------------
Support
-----------------------------
=> Downloads
===> XML files
===> Post Processors
===> Macros
===> Tutorials
===> Others
===> Beta Brains
===> Screen Sets
===> Documents
===> MACH TOOL BOX
=> One on one phone support.
=> Forum suggestions and report forum problems.
-----------------------------
Mach4
-----------------------------
=> Mach4 pre-Alpha Testing
Loading...