MicroControl:API Documentation: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Created page with "[[category::MircoControl]] A typical callback to request lots of data from <source lang="python"> def OnRequest(self, evt): TCP.Send(XML.Request('get',position=(),...")
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[category::MircoControl]]
[[category:MicroControl]]
 
 
Sending the message
 
Waiting for the request
 
 


A typical callback to request lots of data from  
A typical callback to request lots of data from  


<source lang="python">
<source lang="python" enclose="pre" >
     def OnRequest(self, evt):
     def OnRequest(self, evt):
         TCP.Send(XML.Request('get',position=(),scan=(),image=(),field=(), size=(), lasers=()))
         TCP.Send(XML.Request('get',position=(),scan=(),image=(),field=(), size=(), lasers=()))

Latest revision as of 00:30, 1 March 2011


Sending the message

Waiting for the request


A typical callback to request lots of data from

<source lang="python" enclose="pre" >

   def OnRequest(self, evt):
       TCP.Send(XML.Request('get',position=(),scan=(),image=(),field=(), size=(), lasers=()))
       print 'Starting to read ..'
       TCP.Read(self.TopParent,DataReadyEvent(num=0))

</source>