Re: [Emc-users] EDM machining, user interface, increments

2017-01-14 Thread Nicklas Karlsson
It would be good with links like this on the linuxcnc home page and of course 
even better with files themselves if there are no copyright restrictions.

I have attachad a pdf-file which is interesting.

On Sat, 14 Jan 2017 09:08:03 +0700
TJoseph Powderly  wrote:

> Nicklas, Sarah and all interested in EDM
> i found this resource
> unlike most tech sites , the papers are free :-)
> http://www.sciencedirect.com/science/journal/22128271/42/supp/C
> regards, tomp tjtr33
> 
> btw: lots more than edm here!
> 
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users


edm-cnc-paper_nc.pdf
Description: Adobe PDF document
--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] EDM machining, user interface, increments

2017-01-13 Thread TJoseph Powderly
Nicklas, Sarah and all interested in EDM
i found this resource
unlike most tech sites , the papers are free :-)
http://www.sciencedirect.com/science/journal/22128271/42/supp/C
regards, tomp tjtr33

btw: lots more than edm here!

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] EDM machining, user interface, increments

2017-01-12 Thread Nicklas Karlsson
On Wed, 11 Jan 2017 08:50:28 +0700
TJoseph Powderly  wrote:

> ...
> I understand the need for scaling the meters, sort of zoom to look 
> closer at the process

Yes and zoom on step length to fine tune. To scale values in widget is probably 
a very good idea since it is not real time and only need to be done once. As is 
now I added scaling to real time thread which require quite many rows and use 
real time execution then really not needed.

> in real machines, we had a switch on the ammeter to change the shunt, 
> and a switch on the voltmeter changing resistor divider
> an electro-mechanical solution so we could watch low voltages and low 
> current better

I think this is common and have often heard the noise of switches in 
measurement instruments as they switched range. If best possible measurement 
accuracy is needed this is the method to.

> we had no solution to watch midrange values closer

This is harder, an offset is needed.


I have seen a few improvements and sooner or later I should get enough time to 
look at them.

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] EDM machining, user interface, increments

2017-01-11 Thread Nicklas Karlsson
I could confirm it works perfect, it was a really simple fix.

Then I look at code to add a widget does not seem to hard.


> I pushed a fix for hal_dial to 2.7 - not sure what you are using.
> 
> eventually it will cycle thru to master (and later releases)
> 
> 
> 
> The fix is simple (two lines) if you wish to just add it for now.
> 
> 
> in gladevcp/hal_dial.py
> 
> 
> 
> # handle the scroll wheel of the mouse
> def _scroll(self, widget, event):
> if event.direction == gtk.gdk.SCROLL_UP:
> self._count += 1
> self._minute_offset +=1
> self._delta_scaled += self.scale #<<<<<<<<<< this one
> if event.direction == gtk.gdk.SCROLL_DOWN:
> self._count -= 1
> self._minute_offset -=1
> self._delta_scaled -= self.scale #<<<<<<<<<<< and this one
> self._last_offset =  self._minute_offset
> self.redraw_canvas()
> self.emit("count_changed", self._count,self.scale,self._delta_scaled)
> 
> I tested on my machine it seemed to work fine after that.
> Chris M
> ____________
> From: Chris Morley <chrisinnana...@hotmail.com>
> Sent: January 10, 2017 9:51 PM
> To: EMC
> Subject: Re: [Emc-users] EDM machining, user interface, increments
> 
> 
> That sounds like a bug...wheel or mouse should move it the same.
> 
> ----- Reply message -
> From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
> To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
> Subject: [Emc-users] EDM machining, user interface, increments
> Date: Tue, Jan 10, 2017 1:35 PM
> 
> 
> 
> In sort of the delta scale is a little bit slippery. It slip while using the 
> mouse wheel and only graphics is moving but no update of value. Then left 
> mouse button is held down and dial is moved by moving mouse pointer both 
> graphics and value is updated.
> 
> 
> On Tue, 10 Jan 2017 20:45:24 +
> Chris Morley <chrisinnana...@hotmail.com> wrote:
> 
> >
> > Hal dial has a pin called delta scale I think. Then changing the scale (by 
> > clicking) only changes the scale of future dial moments, which is what I 
> > think you want.
> > Chris M
> >
> > - Reply message -
> > From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
> > To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
> > Subject: [Emc-users] EDM machining, user interface, increments
> > Date: Tue, Jan 10, 2017 12:34 PM
> >
> >
> >
> > I discovered the limitations of the hal inputs, what is needed is:
> >   min
> >   max
> >   scale
> >   increment value
> >   increment value change from GUI
> >   A choice to between actual or scaled value
> >
> > None of the do it all.The hal dial may change the scale but what is really 
> > needed is possibility to change increment value for fine tuning.
> >
> > Despite these small limitations I still think glade user interface designer 
> > is really good. Since source code is available it is also possible change, 
> > if anybody could give me a hint maybe I could look into it but I better 
> > start with the unfinished g-code database, I think where will be  few hours 
> > for it this weekend.
> >
> >
> >
> > On Tue, 20 Dec 2016 12:04:05 +
> > Sarah Armstrong <sarahj.armstron...@gmail.com> wrote:
> >
> > > Ni⁣cklas,
> > > Could you give me details etc, and I can get up to date, and join the 
> > > discussion
> > >
> > > Sarah
> > >
> > > Sent from BlueMail
> > >
> > > On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
> > > <nicklas.karlsso...@gmail.com> wrote:
> > > >Finally I have all the necessary hardware parts, some are still on
> > > >desktop not connected to machine but they are tested to work: servo
> > > >drives, digital IO, spark generator.
> > > >
> > > >Right now I start to think about user interface and as I remember
> > > >someone started work on this earlier.
> > > >
> > > >
> > > >If anyone is interested I could share hardware drawings or others. I
> > > >also changed a few rows in drivers so that positions are sent instead
> > > >of speed and put control loop local.
> > > >
> > > >
> > > >
> > > >Regards Nicklas Karlsson
> > > >
> > > >

Re: [Emc-users] EDM machining, user interface, increments

2017-01-10 Thread Chris Morley
I pushed a fix for hal_dial to 2.7 - not sure what you are using.

eventually it will cycle thru to master (and later releases)



The fix is simple (two lines) if you wish to just add it for now.


in gladevcp/hal_dial.py



# handle the scroll wheel of the mouse
def _scroll(self, widget, event):
if event.direction == gtk.gdk.SCROLL_UP:
self._count += 1
self._minute_offset +=1
self._delta_scaled += self.scale #<<<<<<<<<< this one
if event.direction == gtk.gdk.SCROLL_DOWN:
self._count -= 1
self._minute_offset -=1
self._delta_scaled -= self.scale #<<<<<<<<<<< and this one
self._last_offset =  self._minute_offset
self.redraw_canvas()
self.emit("count_changed", self._count,self.scale,self._delta_scaled)

I tested on my machine it seemed to work fine after that.
Chris M

From: Chris Morley <chrisinnana...@hotmail.com>
Sent: January 10, 2017 9:51 PM
To: EMC
Subject: Re: [Emc-users] EDM machining, user interface, increments


That sounds like a bug...wheel or mouse should move it the same.

- Reply message -
From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
Subject: [Emc-users] EDM machining, user interface, increments
Date: Tue, Jan 10, 2017 1:35 PM



In sort of the delta scale is a little bit slippery. It slip while using the 
mouse wheel and only graphics is moving but no update of value. Then left mouse 
button is held down and dial is moved by moving mouse pointer both graphics and 
value is updated.


On Tue, 10 Jan 2017 20:45:24 +
Chris Morley <chrisinnana...@hotmail.com> wrote:

>
> Hal dial has a pin called delta scale I think. Then changing the scale (by 
> clicking) only changes the scale of future dial moments, which is what I 
> think you want.
> Chris M
>
> - Reply message -
> From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
> To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
> Subject: [Emc-users] EDM machining, user interface, increments
> Date: Tue, Jan 10, 2017 12:34 PM
>
>
>
> I discovered the limitations of the hal inputs, what is needed is:
>   min
>   max
>   scale
>   increment value
>   increment value change from GUI
>   A choice to between actual or scaled value
>
> None of the do it all.The hal dial may change the scale but what is really 
> needed is possibility to change increment value for fine tuning.
>
> Despite these small limitations I still think glade user interface designer 
> is really good. Since source code is available it is also possible change, if 
> anybody could give me a hint maybe I could look into it but I better start 
> with the unfinished g-code database, I think where will be  few hours for it 
> this weekend.
>
>
>
> On Tue, 20 Dec 2016 12:04:05 +
> Sarah Armstrong <sarahj.armstron...@gmail.com> wrote:
>
> > Ni⁣cklas,
> > Could you give me details etc, and I can get up to date, and join the 
> > discussion
> >
> > Sarah
> >
> > Sent from BlueMail
> >
> > On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
> > <nicklas.karlsso...@gmail.com> wrote:
> > >Finally I have all the necessary hardware parts, some are still on
> > >desktop not connected to machine but they are tested to work: servo
> > >drives, digital IO, spark generator.
> > >
> > >Right now I start to think about user interface and as I remember
> > >someone started work on this earlier.
> > >
> > >
> > >If anyone is interested I could share hardware drawings or others. I
> > >also changed a few rows in drivers so that positions are sent instead
> > >of speed and put control loop local.
> > >
> > >
> > >
> > >Regards Nicklas Karlsson
> > >
> > >--
> > >Developer Access Program for Intel Xeon Phi Processors
> > >Access to Intel Xeon Phi processor-based developer platforms.
> > >With one year of Intel Parallel Studio XE.
> > >Training and support from Colfax.
> > >Order your platform today.http://sdm.link/intel
> > >___
> > >Emc-users mailing list
> > >Emc-users@lists.sourceforge.net
> > >https://lists.sourceforge.net/lists/listinfo/emc-users
> > --
> > Devel

Re: [Emc-users] EDM machining, user interface, increments

2017-01-10 Thread TJoseph Powderly
a lot of the pyvcp widgets suffered from update problems
i dont know about gladevcp widgets, but it sounds similar.
how to fix in gladevcp, i dont know. i have not looked at the widget 
code yet
i will set up some oscillating value for a glade meter to follow and 
experiment
I understand the need for scaling the meters, sort of zoom to look 
closer at the process
in real machines, we had a switch on the ammeter to change the shunt, 
and a switch on the voltmeter changing resistor divider
an electro-mechanical solution so we could watch low voltages and low 
current better
we had no solution to watch midrange values closer
regards
tomp tjtr33

On 01/11/17 04:51, Chris Morley wrote:
> That sounds like a bug...wheel or mouse should move it the same.
>
> - Reply message -
> From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
> To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
> Subject: [Emc-users] EDM machining, user interface, increments
> Date: Tue, Jan 10, 2017 1:35 PM
>
>
>
> In sort of the delta scale is a little bit slippery. It slip while using the 
> mouse wheel and only graphics is moving but no update of value. Then left 
> mouse button is held down and dial is moved by moving mouse pointer both 
> graphics and value is updated.
>
>
> On Tue, 10 Jan 2017 20:45:24 +
> Chris Morley <chrisinnana...@hotmail.com> wrote:
>
>> Hal dial has a pin called delta scale I think. Then changing the scale (by 
>> clicking) only changes the scale of future dial moments, which is what I 
>> think you want.
>> Chris M
>>
>> - Reply message -
>> From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
>> To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
>> Subject: [Emc-users] EDM machining, user interface, increments
>> Date: Tue, Jan 10, 2017 12:34 PM
>>
>>
>>
>> I discovered the limitations of the hal inputs, what is needed is:
>>min
>>max
>>scale
>>increment value
>>increment value change from GUI
>>A choice to between actual or scaled value
>>
>> None of the do it all.The hal dial may change the scale but what is really 
>> needed is possibility to change increment value for fine tuning.
>>
>> Despite these small limitations I still think glade user interface designer 
>> is really good. Since source code is available it is also possible change, 
>> if anybody could give me a hint maybe I could look into it but I better 
>> start with the unfinished g-code database, I think where will be  few hours 
>> for it this weekend.
>>
>>
>>
>> On Tue, 20 Dec 2016 12:04:05 +
>> Sarah Armstrong <sarahj.armstron...@gmail.com> wrote:
>>
>>> Ni⁣cklas,
>>> Could you give me details etc, and I can get up to date, and join the 
>>> discussion
>>>
>>> Sarah
>>>
>>> Sent from BlueMail ​
>>>
>>> On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
>>> <nicklas.karlsso...@gmail.com> wrote:
>>>> Finally I have all the necessary hardware parts, some are still on
>>>> desktop not connected to machine but they are tested to work: servo
>>>> drives, digital IO, spark generator.
>>>>
>>>> Right now I start to think about user interface and as I remember
>>>> someone started work on this earlier.
>>>>
>>>>
>>>> If anyone is interested I could share hardware drawings or others. I
>>>> also changed a few rows in drivers so that positions are sent instead
>>>> of speed and put control loop local.
>>>>
>>>>
>>>>
>>>> Regards Nicklas Karlsson
>>>>
>>>> --
>>>> Developer Access Program for Intel Xeon Phi Processors
>>>> Access to Intel Xeon Phi processor-based developer platforms.
>>>> With one year of Intel Parallel Studio XE.
>>>> Training and support from Colfax.
>>>> Order your platform today.http://sdm.link/intel
>>>> ___
>>>> Emc-users mailing list
>>>> Emc-users@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/emc-users
>>> --
>>> Developer Access Program for Intel Xeon Phi Processors
>>> Access to Intel Xeon Phi processor-based developer platfo

Re: [Emc-users] EDM machining, user interface, increments

2017-01-10 Thread Chris Morley

That sounds like a bug...wheel or mouse should move it the same.

- Reply message -
From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
Subject: [Emc-users] EDM machining, user interface, increments
Date: Tue, Jan 10, 2017 1:35 PM



In sort of the delta scale is a little bit slippery. It slip while using the 
mouse wheel and only graphics is moving but no update of value. Then left mouse 
button is held down and dial is moved by moving mouse pointer both graphics and 
value is updated.


On Tue, 10 Jan 2017 20:45:24 +
Chris Morley <chrisinnana...@hotmail.com> wrote:

>
> Hal dial has a pin called delta scale I think. Then changing the scale (by 
> clicking) only changes the scale of future dial moments, which is what I 
> think you want.
> Chris M
>
> - Reply message -
> From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
> To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
> Subject: [Emc-users] EDM machining, user interface, increments
> Date: Tue, Jan 10, 2017 12:34 PM
>
>
>
> I discovered the limitations of the hal inputs, what is needed is:
>   min
>   max
>   scale
>   increment value
>   increment value change from GUI
>   A choice to between actual or scaled value
>
> None of the do it all.The hal dial may change the scale but what is really 
> needed is possibility to change increment value for fine tuning.
>
> Despite these small limitations I still think glade user interface designer 
> is really good. Since source code is available it is also possible change, if 
> anybody could give me a hint maybe I could look into it but I better start 
> with the unfinished g-code database, I think where will be  few hours for it 
> this weekend.
>
>
>
> On Tue, 20 Dec 2016 12:04:05 +
> Sarah Armstrong <sarahj.armstron...@gmail.com> wrote:
>
> > Ni⁣cklas,
> > Could you give me details etc, and I can get up to date, and join the 
> > discussion
> >
> > Sarah
> >
> > Sent from BlueMail ​
> >
> > On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
> > <nicklas.karlsso...@gmail.com> wrote:
> > >Finally I have all the necessary hardware parts, some are still on
> > >desktop not connected to machine but they are tested to work: servo
> > >drives, digital IO, spark generator.
> > >
> > >Right now I start to think about user interface and as I remember
> > >someone started work on this earlier.
> > >
> > >
> > >If anyone is interested I could share hardware drawings or others. I
> > >also changed a few rows in drivers so that positions are sent instead
> > >of speed and put control loop local.
> > >
> > >
> > >
> > >Regards Nicklas Karlsson
> > >
> > >--
> > >Developer Access Program for Intel Xeon Phi Processors
> > >Access to Intel Xeon Phi processor-based developer platforms.
> > >With one year of Intel Parallel Studio XE.
> > >Training and support from Colfax.
> > >Order your platform today.http://sdm.link/intel
> > >___
> > >Emc-users mailing list
> > >Emc-users@lists.sourceforge.net
> > >https://lists.sourceforge.net/lists/listinfo/emc-users
> > --
> > Developer Access Program for Intel Xeon Phi Processors
> > Access to Intel Xeon Phi processor-based developer platforms.
> > With one year of Intel Parallel Studio XE.
> > Training and support from Colfax.
> > Order your platform today.http://sdm.link/intel
> > ___
> > Emc-users mailing list
> > Emc-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/emc-users
>
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users
> --
> Developer Access Program for Intel Xeon Phi Processors
> Acce

Re: [Emc-users] EDM machining, user interface, increments

2017-01-10 Thread Nicklas Karlsson
In sort of the delta scale is a little bit slippery. It slip while using the 
mouse wheel and only graphics is moving but no update of value. Then left mouse 
button is held down and dial is moved by moving mouse pointer both graphics and 
value is updated.


On Tue, 10 Jan 2017 20:45:24 +
Chris Morley <chrisinnana...@hotmail.com> wrote:

> 
> Hal dial has a pin called delta scale I think. Then changing the scale (by 
> clicking) only changes the scale of future dial moments, which is what I 
> think you want.
> Chris M
> 
> - Reply message -
> From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
> To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
> Subject: [Emc-users] EDM machining, user interface, increments
> Date: Tue, Jan 10, 2017 12:34 PM
> 
> 
> 
> I discovered the limitations of the hal inputs, what is needed is:
>   min
>   max
>   scale
>   increment value
>   increment value change from GUI
>   A choice to between actual or scaled value
> 
> None of the do it all.The hal dial may change the scale but what is really 
> needed is possibility to change increment value for fine tuning.
> 
> Despite these small limitations I still think glade user interface designer 
> is really good. Since source code is available it is also possible change, if 
> anybody could give me a hint maybe I could look into it but I better start 
> with the unfinished g-code database, I think where will be  few hours for it 
> this weekend.
> 
> 
> 
> On Tue, 20 Dec 2016 12:04:05 +
> Sarah Armstrong <sarahj.armstron...@gmail.com> wrote:
> 
> > Ni⁣cklas,
> > Could you give me details etc, and I can get up to date, and join the 
> > discussion
> >
> > Sarah
> >
> > Sent from BlueMail ​
> >
> > On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
> > <nicklas.karlsso...@gmail.com> wrote:
> > >Finally I have all the necessary hardware parts, some are still on
> > >desktop not connected to machine but they are tested to work: servo
> > >drives, digital IO, spark generator.
> > >
> > >Right now I start to think about user interface and as I remember
> > >someone started work on this earlier.
> > >
> > >
> > >If anyone is interested I could share hardware drawings or others. I
> > >also changed a few rows in drivers so that positions are sent instead
> > >of speed and put control loop local.
> > >
> > >
> > >
> > >Regards Nicklas Karlsson
> > >
> > >--
> > >Developer Access Program for Intel Xeon Phi Processors
> > >Access to Intel Xeon Phi processor-based developer platforms.
> > >With one year of Intel Parallel Studio XE.
> > >Training and support from Colfax.
> > >Order your platform today.http://sdm.link/intel
> > >___
> > >Emc-users mailing list
> > >Emc-users@lists.sourceforge.net
> > >https://lists.sourceforge.net/lists/listinfo/emc-users
> > --
> > Developer Access Program for Intel Xeon Phi Processors
> > Access to Intel Xeon Phi processor-based developer platforms.
> > With one year of Intel Parallel Studio XE.
> > Training and support from Colfax.
> > Order your platform today.http://sdm.link/intel
> > ___
> > Emc-users mailing list
> > Emc-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/emc-users
> 
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] EDM machining, user interface, increments

2017-01-10 Thread Nicklas Karlsson
Yes it does but it also have a bug.

It only works then moved by the mouse but value is not updated then using the 
mouse wheel sd I did during the first try, it is good enough for now. I could 
fine tune and will finish of others before starting something new.



On Tue, 10 Jan 2017 20:45:24 +
Chris Morley <chrisinnana...@hotmail.com> wrote:

> 
> Hal dial has a pin called delta scale I think. Then changing the scale (by 
> clicking) only changes the scale of future dial moments, which is what I 
> think you want.
> Chris M
> 
> - Reply message -
> From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
> To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
> Subject: [Emc-users] EDM machining, user interface, increments
> Date: Tue, Jan 10, 2017 12:34 PM
> 
> 
> 
> I discovered the limitations of the hal inputs, what is needed is:
>   min
>   max
>   scale
>   increment value
>   increment value change from GUI
>   A choice to between actual or scaled value
> 
> None of the do it all.The hal dial may change the scale but what is really 
> needed is possibility to change increment value for fine tuning.
> 
> Despite these small limitations I still think glade user interface designer 
> is really good. Since source code is available it is also possible change, if 
> anybody could give me a hint maybe I could look into it but I better start 
> with the unfinished g-code database, I think where will be  few hours for it 
> this weekend.
> 
> 
> 
> On Tue, 20 Dec 2016 12:04:05 +
> Sarah Armstrong <sarahj.armstron...@gmail.com> wrote:
> 
> > Ni⁣cklas,
> > Could you give me details etc, and I can get up to date, and join the 
> > discussion
> >
> > Sarah
> >
> > Sent from BlueMail ​
> >
> > On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
> > <nicklas.karlsso...@gmail.com> wrote:
> > >Finally I have all the necessary hardware parts, some are still on
> > >desktop not connected to machine but they are tested to work: servo
> > >drives, digital IO, spark generator.
> > >
> > >Right now I start to think about user interface and as I remember
> > >someone started work on this earlier.
> > >
> > >
> > >If anyone is interested I could share hardware drawings or others. I
> > >also changed a few rows in drivers so that positions are sent instead
> > >of speed and put control loop local.
> > >
> > >
> > >
> > >Regards Nicklas Karlsson
> > >
> > >--
> > >Developer Access Program for Intel Xeon Phi Processors
> > >Access to Intel Xeon Phi processor-based developer platforms.
> > >With one year of Intel Parallel Studio XE.
> > >Training and support from Colfax.
> > >Order your platform today.http://sdm.link/intel
> > >___
> > >Emc-users mailing list
> > >Emc-users@lists.sourceforge.net
> > >https://lists.sourceforge.net/lists/listinfo/emc-users
> > --
> > Developer Access Program for Intel Xeon Phi Processors
> > Access to Intel Xeon Phi processor-based developer platforms.
> > With one year of Intel Parallel Studio XE.
> > Training and support from Colfax.
> > Order your platform today.http://sdm.link/intel
> > ___
> > Emc-users mailing list
> > Emc-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/emc-users
> 
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] EDM machining, user interface, increments

2017-01-10 Thread Chris Morley

Hal dial has a pin called delta scale I think. Then changing the scale (by 
clicking) only changes the scale of future dial moments, which is what I think 
you want.
Chris M

- Reply message -
From: "Nicklas Karlsson" <nicklas.karlsso...@gmail.com>
To: "Enhanced Machine Controller (EMC)" <emc-users@lists.sourceforge.net>
Subject: [Emc-users] EDM machining, user interface, increments
Date: Tue, Jan 10, 2017 12:34 PM



I discovered the limitations of the hal inputs, what is needed is:
  min
  max
  scale
  increment value
  increment value change from GUI
  A choice to between actual or scaled value

None of the do it all.The hal dial may change the scale but what is really 
needed is possibility to change increment value for fine tuning.

Despite these small limitations I still think glade user interface designer is 
really good. Since source code is available it is also possible change, if 
anybody could give me a hint maybe I could look into it but I better start with 
the unfinished g-code database, I think where will be  few hours for it this 
weekend.



On Tue, 20 Dec 2016 12:04:05 +
Sarah Armstrong <sarahj.armstron...@gmail.com> wrote:

> Ni⁣cklas,
> Could you give me details etc, and I can get up to date, and join the 
> discussion
>
> Sarah
>
> Sent from BlueMail ​
>
> On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
> <nicklas.karlsso...@gmail.com> wrote:
> >Finally I have all the necessary hardware parts, some are still on
> >desktop not connected to machine but they are tested to work: servo
> >drives, digital IO, spark generator.
> >
> >Right now I start to think about user interface and as I remember
> >someone started work on this earlier.
> >
> >
> >If anyone is interested I could share hardware drawings or others. I
> >also changed a few rows in drivers so that positions are sent instead
> >of speed and put control loop local.
> >
> >
> >
> >Regards Nicklas Karlsson
> >
> >--
> >Developer Access Program for Intel Xeon Phi Processors
> >Access to Intel Xeon Phi processor-based developer platforms.
> >With one year of Intel Parallel Studio XE.
> >Training and support from Colfax.
> >Order your platform today.http://sdm.link/intel
> >___
> >Emc-users mailing list
> >Emc-users@lists.sourceforge.net
> >https://lists.sourceforge.net/lists/listinfo/emc-users
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today.http://sdm.link/intel
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users
--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] EDM machining, user interface, increments

2017-01-10 Thread Nicklas Karlsson
I discovered the limitations of the hal inputs, what is needed is:
  min
  max
  scale
  increment value
  increment value change from GUI
  A choice to between actual or scaled value

None of the do it all.The hal dial may change the scale but what is really 
needed is possibility to change increment value for fine tuning.

Despite these small limitations I still think glade user interface designer is 
really good. Since source code is available it is also possible change, if 
anybody could give me a hint maybe I could look into it but I better start with 
the unfinished g-code database, I think where will be  few hours for it this 
weekend.



On Tue, 20 Dec 2016 12:04:05 +
Sarah Armstrong  wrote:

> Ni⁣cklas, 
> Could you give me details etc, and I can get up to date, and join the 
> discussion 
> 
> Sarah 
> 
> Sent from BlueMail ​
> 
> On 19 Dec 2016, 20:16, at 20:16, Nicklas Karlsson 
>  wrote:
> >Finally I have all the necessary hardware parts, some are still on
> >desktop not connected to machine but they are tested to work: servo
> >drives, digital IO, spark generator.
> >
> >Right now I start to think about user interface and as I remember
> >someone started work on this earlier.
> >
> >
> >If anyone is interested I could share hardware drawings or others. I
> >also changed a few rows in drivers so that positions are sent instead
> >of speed and put control loop local.
> >
> >
> >
> >Regards Nicklas Karlsson
> >
> >--
> >Developer Access Program for Intel Xeon Phi Processors
> >Access to Intel Xeon Phi processor-based developer platforms.
> >With one year of Intel Parallel Studio XE.
> >Training and support from Colfax.
> >Order your platform today.http://sdm.link/intel
> >___
> >Emc-users mailing list
> >Emc-users@lists.sourceforge.net
> >https://lists.sourceforge.net/lists/listinfo/emc-users
> --
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today.http://sdm.link/intel
> ___
> Emc-users mailing list
> Emc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/emc-users

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users