Kundendsiplay ansteuern

Hi, kennt jemand eine Lösung um so ein Display vom Mac aus anzusteuern? Also natürlich mit Xojo :wink:

http://www.ebay.de/bhp/kundendisplay-usb

Hallo, das wird mich ESC-Sequenzen angesteuert, ist also ganz einfach…

Hi, danke für die Info aber ich habe keinen blassen Schimmer, wie das gehen soll… es gibt ja keine Mac-Treiber. Wie finde ich das USB-Gerät und sende ihm dann die Sequenzen?

Wahrscheinlich erscheint es als serielle Schnittstelle und lässt sich als solche eben mit ESC Sequenzen steuern. In dem Falle könnten diese Artikel weiterhelfen:
http://great-white-software.com/rblibrary/index.php?main_page=index&cPath=5

Danke, schaue ich mir die Tage mal an! Falls jemand so etwas schon mal gemacht hat, wre ich um ein paar Code-Schnipsel sehr dankbar.

Wie gesagt : “hands on serial” Aaron Balman, kommt mit Code Schnipseln und Beispielprojekten.

ZB :

[code]dim i, count as Integer

count = System.SerialPortCount for i = 0 to count - 1 me.AddRow( System.SerialPort( i ).Name ) next i

me.ListIndex = 0

Now we want to switch into the PushButton1.Action event. This is where we will setup the Serial control and do our communications. So the first action we want to do is set the control up and open the device for communications.

// Set the serial port that we want to // communicate over from the list. Serial1.SerialPort = System.SerialPort( PopupMenu1.ListIndex )

// Set our initial configuration data Serial1.Baud = Serial.Baud19200 Serial1.Bits = Serial.Bits8 Serial1.Stop = Serial.StopBits1 Serial1.Parity = Serial.ParityNone

// Open the device for communications if not Serial1.Open then MsgBox “Could not open the serial port!” return end if [/code]

OK, danke, dann bestelle ich mal so ein Display und versuche mein Glück

Ja, es ist eine ganz normle Serielle Schnittstelle, dort lsst sich recht einfach etwas hinsenden…