Uses of Class
org.zu.ardulink.protocol.MessageInfo

Packages that use MessageInfo
org.zu.ardulink   
org.zu.ardulink.protocol   
 

Uses of MessageInfo in org.zu.ardulink
 

Methods in org.zu.ardulink that return MessageInfo
 MessageInfo Link.sendCustomMessage(String message)
          Call protocol sendCustomMessage with this Link (and without a call back implementation to manage reply message) Custom message should be used to request specific actions in custom sketches
 MessageInfo Link.sendCustomMessage(String message, ReplyMessageCallback callback)
          Call protocol sendCustomMessage with this Link.
 MessageInfo Link.sendKeyPressEvent(char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex)
          Call protocol sendKeyPressEvent with this Link (and without a call back implementation to manage reply message)
 MessageInfo Link.sendKeyPressEvent(char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex, ReplyMessageCallback callback)
          Call protocol sendKeyPressEvent with this Link.
 MessageInfo Link.sendNoToneMessage(int pin)
          Call protocol sendNoToneMessage with this Link (and without a call back implementation to manage reply message) This method request arduino to perform a noTone function call.
 MessageInfo Link.sendNoToneMessage(int pin, ReplyMessageCallback callback)
          Call protocol sendNoToneMessage with this Link This method request arduino to perform a noTone function call.
 MessageInfo Link.sendPowerPinIntensity(int pin, int intensity)
          Call protocol sendPowerPinIntensity with this Link (and without a call back implementation to manage reply message) This method request arduino to perform an analogWrite function call.
 MessageInfo Link.sendPowerPinIntensity(int pin, int intensity, ReplyMessageCallback callback)
          Call protocol sendPowerPinIntensity with this Link.
 MessageInfo Link.sendPowerPinSwitch(int pin, int power)
          Call protocol sendPowerPinSwitch with this Link (and without a call back implementation to manage reply message) This method request arduino to perform a digitalWrite function call.
 MessageInfo Link.sendPowerPinSwitch(int pin, int power, ReplyMessageCallback callback)
          Call protocol sendPowerPinSwitch with this Link.
 MessageInfo Link.sendToneMessage(int pin, int frequency)
          Call protocol sendToneMessage with this Link (and without a call back implementation to manage reply message) This method request arduino to perform a tone function call.
 MessageInfo Link.sendToneMessage(int pin, int frequency, int duration)
          Call protocol sendToneMessage with this Link (and without a call back implementation to manage reply message) This method request arduino to perform a tone function call.
 MessageInfo Link.sendToneMessage(int pin, int frequency, int duration, ReplyMessageCallback callback)
          Call protocol sendToneMessage with this Link This method request arduino to perform a tone function call.
 MessageInfo Link.sendToneMessage(int pin, int frequency, ReplyMessageCallback callback)
          Call protocol sendToneMessage with this Link This method request arduino to perform a tone function call.
 MessageInfo Link.startListenAnalogPin(int pin)
          Call protocol startListenAnalogPin with this Link (and without a call back implementation to manage reply message).
 MessageInfo Link.startListenAnalogPin(int pin, ReplyMessageCallback callback)
          As startListenAnalogPin(int pin) but with the possibility to add a callback.
 MessageInfo Link.startListenDigitalPin(int pin)
          Call protocol startListenDigitalPin with this Link (and without a call back implementation to manage reply message).
 MessageInfo Link.startListenDigitalPin(int pin, ReplyMessageCallback callback)
          As startListenDigitalPin(int pin) but with the possibility to add a callback.
 MessageInfo Link.stopListenAnalogPin(int pin)
          Call protocol stopListenAnalogPin with this Link (and without a call back implementation to manage reply message).
 MessageInfo Link.stopListenAnalogPin(int pin, ReplyMessageCallback callback)
          As stopListenAnalogPin(int pin) but with the possibility to add a callback.
 MessageInfo Link.stopListenDigitalPin(int pin)
          Call protocol stopListenDigitalPin with this Link (and without a call back implementation to manage reply message).
 MessageInfo Link.stopListenDigitalPin(int pin, ReplyMessageCallback callback)
          As stopListenDigitalPin(int pin) but with the possibility to add a callback.
 

Uses of MessageInfo in org.zu.ardulink.protocol
 

Methods in org.zu.ardulink.protocol that return MessageInfo
 MessageInfo SimpleBinaryProtocol.sendCustomMessage(Link link, String message)
           
 MessageInfo IProtocol.sendCustomMessage(Link link, String message)
          Sends a custom message used for specific actions in Arduino sketches
 MessageInfo ALProtocol.sendCustomMessage(Link link, String message)
           
 MessageInfo SimpleBinaryProtocol.sendCustomMessage(Link link, String message, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.sendCustomMessage(Link link, String message, ReplyMessageCallback callback)
          Sends a custom message used for specific actions in Arduino sketches
 MessageInfo ALProtocol.sendCustomMessage(Link link, String message, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.sendKeyPressEvent(Link link, char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex)
           
 MessageInfo IProtocol.sendKeyPressEvent(Link link, char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex)
          Sends information about which key was pressed.
 MessageInfo ALProtocol.sendKeyPressEvent(Link link, char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex)
           
 MessageInfo SimpleBinaryProtocol.sendKeyPressEvent(Link link, char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.sendKeyPressEvent(Link link, char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex, ReplyMessageCallback callback)
          Sends information about which key was pressed.
 MessageInfo ALProtocol.sendKeyPressEvent(Link link, char keychar, int keycode, int keylocation, int keymodifiers, int keymodifiersex, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.sendNoToneMessage(Link link, int pin)
           
 MessageInfo IProtocol.sendNoToneMessage(Link link, int pin)
          Sends the request to stop the generation of a tone (square wave)
 MessageInfo ALProtocol.sendNoToneMessage(Link link, int pin)
           
 MessageInfo SimpleBinaryProtocol.sendNoToneMessage(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.sendNoToneMessage(Link link, int pin, ReplyMessageCallback callback)
          Sends the request to stop the generation of a tone (square wave)
 MessageInfo ALProtocol.sendNoToneMessage(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.sendPowerPinIntensity(Link link, int pin, int intensity)
           
 MessageInfo IProtocol.sendPowerPinIntensity(Link link, int pin, int intensity)
          Sends the request to set a PWM type pin to a certain intensity.
 MessageInfo ALProtocol.sendPowerPinIntensity(Link link, int pin, int intensity)
           
 MessageInfo SimpleBinaryProtocol.sendPowerPinIntensity(Link link, int pin, int intensity, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.sendPowerPinIntensity(Link link, int pin, int intensity, ReplyMessageCallback callback)
          Sends the request to set a PWM type pin to a certain intensity.
 MessageInfo ALProtocol.sendPowerPinIntensity(Link link, int pin, int intensity, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.sendPowerPinSwitch(Link link, int pin, int power)
           
 MessageInfo IProtocol.sendPowerPinSwitch(Link link, int pin, int power)
          Sends the request to set a pin to HIGH or LOW power.
 MessageInfo ALProtocol.sendPowerPinSwitch(Link link, int pin, int power)
           
 MessageInfo SimpleBinaryProtocol.sendPowerPinSwitch(Link link, int pin, int power, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.sendPowerPinSwitch(Link link, int pin, int power, ReplyMessageCallback callback)
          Sends the request to set a pin to HIGH or LOW power.
 MessageInfo ALProtocol.sendPowerPinSwitch(Link link, int pin, int power, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.sendToneMessage(Link link, int pin, int frequency)
           
 MessageInfo IProtocol.sendToneMessage(Link link, int pin, int frequency)
          Sends the request to generate a tone (square wave)
 MessageInfo ALProtocol.sendToneMessage(Link link, int pin, int frequency)
           
 MessageInfo SimpleBinaryProtocol.sendToneMessage(Link link, int pin, int frequency, int duration)
           
 MessageInfo IProtocol.sendToneMessage(Link link, int pin, int frequency, int duration)
          Sends the request to generate a tone (square wave)
 MessageInfo ALProtocol.sendToneMessage(Link link, int pin, int frequency, int duration)
           
 MessageInfo SimpleBinaryProtocol.sendToneMessage(Link link, int pin, int frequency, int duration, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.sendToneMessage(Link link, int pin, int frequency, int duration, ReplyMessageCallback callback)
          Sends the request to generate a tone (square wave)
 MessageInfo ALProtocol.sendToneMessage(Link link, int pin, int frequency, int duration, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.sendToneMessage(Link link, int pin, int frequency, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.sendToneMessage(Link link, int pin, int frequency, ReplyMessageCallback callback)
          Sends the request to generate a tone (square wave)
 MessageInfo ALProtocol.sendToneMessage(Link link, int pin, int frequency, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.startListenAnalogPin(Link link, int pin)
           
 MessageInfo IProtocol.startListenAnalogPin(Link link, int pin)
          Sends the request to listen on a specific analog pin.
 MessageInfo ALProtocol.startListenAnalogPin(Link link, int pin)
           
 MessageInfo SimpleBinaryProtocol.startListenAnalogPin(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.startListenAnalogPin(Link link, int pin, ReplyMessageCallback callback)
          Sends the request to listen on a specific analog pin.
 MessageInfo ALProtocol.startListenAnalogPin(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.startListenDigitalPin(Link link, int pin)
           
 MessageInfo IProtocol.startListenDigitalPin(Link link, int pin)
          Sends the request to listen on a specific pin.
 MessageInfo ALProtocol.startListenDigitalPin(Link link, int pin)
           
 MessageInfo SimpleBinaryProtocol.startListenDigitalPin(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.startListenDigitalPin(Link link, int pin, ReplyMessageCallback callback)
          Sends the request to listen on a specific pin.
 MessageInfo ALProtocol.startListenDigitalPin(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.stopListenAnalogPin(Link link, int pin)
           
 MessageInfo IProtocol.stopListenAnalogPin(Link link, int pin)
          Sends the request to not listen on a specific analog pin.
 MessageInfo ALProtocol.stopListenAnalogPin(Link link, int pin)
           
 MessageInfo SimpleBinaryProtocol.stopListenAnalogPin(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.stopListenAnalogPin(Link link, int pin, ReplyMessageCallback callback)
          Sends the request to not listen on a specific analog pin.
 MessageInfo ALProtocol.stopListenAnalogPin(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo SimpleBinaryProtocol.stopListenDigitalPin(Link link, int pin)
           
 MessageInfo IProtocol.stopListenDigitalPin(Link link, int pin)
          Sends the request to not listen on a specific pin.
 MessageInfo ALProtocol.stopListenDigitalPin(Link link, int pin)
           
 MessageInfo SimpleBinaryProtocol.stopListenDigitalPin(Link link, int pin, ReplyMessageCallback callback)
           
 MessageInfo IProtocol.stopListenDigitalPin(Link link, int pin, ReplyMessageCallback callback)
          Sends the request to not listen on a specific pin.
 MessageInfo ALProtocol.stopListenDigitalPin(Link link, int pin, ReplyMessageCallback callback)
           
 

Methods in org.zu.ardulink.protocol with parameters of type MessageInfo
 void ReplyMessageCallback.replyInfo(MessageInfo messageInfo)
           
 void LoggerReplyMessageCallback.replyInfo(MessageInfo messageInfo)
           
 



Copyright © 2015. All rights reserved.