コード例 #1
0
ファイル: mraa.py プロジェクト: dsoultanis/helotism
    def setFlowcontrol(self, xonxoff, rtscts):
        """
        setFlowcontrol(Uart self, bool xonxoff, bool rtscts) -> mraa::Result

        Parameters:
            xonxoff: bool
            rtscts: bool

        """
        return _mraa.Uart_setFlowcontrol(self, xonxoff, rtscts)
コード例 #2
0
ファイル: mraa.py プロジェクト: cloverpop/410c-sensor
    def setFlowcontrol(self, xonxoff, rtscts):
        """
        setFlowcontrol(Uart self, bool xonxoff, bool rtscts) -> mraa::Result

        Parameters
        ----------
        xonxoff: bool
        rtscts: bool




        Set the flowcontrol

        Parameters:
        -----------

        xonxoff:  XON/XOFF Software flow control.

        rtscts:  RTS/CTS out of band hardware flow control

        Result of operation 
        """
        return _mraa.Uart_setFlowcontrol(self, xonxoff, rtscts)
コード例 #3
0
ファイル: mraa.py プロジェクト: marvin-w/respeaker-skill
 def setFlowcontrol(self, xonxoff, rtscts):
     return _mraa.Uart_setFlowcontrol(self, xonxoff, rtscts)