当前位置: 首页>>代码示例>>Python>>正文


Python Pin.IRQ_RISING属性代码示例

本文整理汇总了Python中machine.Pin.IRQ_RISING属性的典型用法代码示例。如果您正苦于以下问题:Python Pin.IRQ_RISING属性的具体用法?Python Pin.IRQ_RISING怎么用?Python Pin.IRQ_RISING使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在machine.Pin的用法示例。


在下文中一共展示了Pin.IRQ_RISING属性的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def __init__(self, name, pin,
                 rising=False, falling=False,
                 pullup=True, on_change=None, report_change=True):
        if pullup:
            pin.init(Pin.IN, Pin.PULL_UP)
        else:
            pin.init(Pin.IN, Pin.OPEN_DRAIN)
        if rising and falling:
            trigger = Pin.IRQ_RISING | Pin.IRQ_FALLING
        elif not rising and falling:
            trigger = Pin.IRQ_FALLING
        else:  # also if both all false
            trigger = Pin.IRQ_RISING
        pin.irq(trigger=trigger, handler=self._cb)
        self.counter = 0
        self.report_counter = 0
        self.triggered = False
        Device.__init__(self, name, pin, on_change=on_change,
                        report_change=report_change)
        self.getters[""] = self.value 
开发者ID:ulno,项目名称:ulnoiot-upy,代码行数:22,代码来源:trigger.py

示例2: __init__

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def __init__(self,button_idx, callback=None):
        # 按键字典
        # 数据结构: (GPIO编号,按键抬起的电平, 按键按下的电平)
        button_list = [(39, False, True)]

        if button_idx < 0 or button_idx >= len(button_list):
            print("ERROR: Wrong Button Index")
            print("Valid Button Index: {} - {}".format(0, len(button_list)-1))
            return None

        gpio_id, self.BUTTON_RELEASE, self.BUTTON_PRESS, = button_list[button_idx]
        # 按键
        self.pin = Pin(gpio_id, Pin.IN)
        # 回调函数
        self.callback = callback
        # 设置外部中断
        if self.BUTTON_PRESS == True:
            self.pin.irq(trigger=Pin.IRQ_RISING, handler=self.irq_handler)
        else:
            self.pin.irq(trigger=Pin.IRQ_FALLING, handler=self.irq_handler)
        
        # 标志位 当前是否可以相应按键中断
        self.flag = True 
开发者ID:1zlab,项目名称:1ZLAB_PyEspCar,代码行数:25,代码来源:button.py

示例3: __init__

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def __init__(self, pin, callback, extended, *args):  # Optional args for callback
        self._ev_start = Event()
        self._callback = callback
        self._extended = extended
        self._addr = 0
        self.block_time = 80 if extended else 73  # Allow for some tx tolerance (?)
        self._args = args
        self._times = array('i',  (0 for _ in range(_EDGECOUNT + 1)))  # +1 for overrun
        if platform == 'pyboard':
            ExtInt(pin, ExtInt.IRQ_RISING_FALLING, Pin.PULL_NONE, self._cb_pin)
        else:  # PR5962 ESP8266 hard IRQ's not supported
            pin.irq(handler = self._cb_pin, trigger = (Pin.IRQ_FALLING | Pin.IRQ_RISING))
        #elif ESP32:
            #pin.irq(handler = self._cb_pin, trigger = (Pin.IRQ_FALLING | Pin.IRQ_RISING))
        #else:
            #pin.irq(handler = self._cb_pin, trigger = (Pin.IRQ_FALLING | Pin.IRQ_RISING), hard = True)
        self._edge = 0
        self._ev_start.clear()
        loop = asyncio.get_event_loop()
        loop.create_task(self._run()) 
开发者ID:peterhinch,项目名称:micropython-async,代码行数:22,代码来源:aremote.py

示例4: set_callbacks

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def set_callbacks(self, callback=None):
        mode = Pin.IRQ_RISING | Pin.IRQ_FALLING
        self.irq_clk = self.pin_clk.irq(trigger=mode, handler=callback)
        self.irq_dt = self.pin_dt.irq(trigger=mode, handler=callback) 
开发者ID:SpotlightKid,项目名称:micropython-stm-lib,代码行数:6,代码来源:encoder.py

示例5: prepare_irq_pin

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def prepare_irq_pin(self, pin_id): 
        pin = self.prepare_pin(pin_id, Pin.IN) 
        if pin:
            pin.set_handler_for_irq_on_rising_edge = lambda handler: pin.irq(handler = handler, trigger = Pin.IRQ_RISING)
            pin.detach_irq = lambda : pin.irq(handler = None, trigger = 0)
            return pin 
开发者ID:Wei1234c,项目名称:SX127x_driver_for_MicroPython_on_ESP8266,代码行数:8,代码来源:controller_esp.py

示例6: prepare_irq_pin

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def prepare_irq_pin(self, pin_id):
        pin = self.prepare_pin(pin_id, Pin.IN)
        if pin:
            pin.set_handler_for_irq_on_rising_edge = lambda handler: pin.irq(handler = handler,
                                                                             trigger = Pin.IRQ_RISING)
            pin.detach_irq = lambda: pin.irq(handler = None, trigger = 0)
            return pin 
开发者ID:Wei1234c,项目名称:SX127x_driver_for_MicroPython_on_ESP8266,代码行数:9,代码来源:controller_esp.py

示例7: set_mode_digital_input

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def set_mode_digital_input(self, payload):
        """
        Set a pin as a digital input with pull_up and
        enable interrupts for a change on either edge.
        :param payload:
        :return:
        """
        pin = payload['pin']
        pin_in = Pin(pin, Pin.IN, Pin.PULL_UP)
        pin_in.irq(trigger=Pin.IRQ_RISING | Pin.IRQ_FALLING, handler=self.digital_input_callback)
        self.input_pin_objects[pin] = pin_in 
开发者ID:MrYsLab,项目名称:python_banyan,代码行数:13,代码来源:esp_8266Full.py

示例8: set_mode_digital_input

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def set_mode_digital_input(self,payload):
  pin=payload['pin']
  pin_in=Pin(pin,Pin.IN,Pin.PULL_UP)
  pin_in.irq(trigger=Pin.IRQ_RISING|Pin.IRQ_FALLING,handler=self.digital_input_callback)
  self.input_pin_objects[pin]=pin_in 
开发者ID:MrYsLab,项目名称:python_banyan,代码行数:7,代码来源:esp_8266.py

示例9: __init__

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def __init__(self, pin_x, pin_y, reverse, scale):
        self.reverse = reverse
        self.scale = scale
        self.forward = True
        self.pin_x = pin_x
        self.pin_y = pin_y
        self._pos = 0
        self.x_interrupt = pin_x.irq(trigger=Pin.IRQ_RISING | Pin.IRQ_FALLING, handler=self.x_callback)
        self.y_interrupt = pin_y.irq(trigger=Pin.IRQ_RISING | Pin.IRQ_FALLING, handler=self.y_callback) 
开发者ID:peterhinch,项目名称:micropython-samples,代码行数:11,代码来源:encoder_portable.py

示例10: __init__

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def __init__(self, pin, callback=None, trigger=Pin.IRQ_FALLING | Pin.IRQ_RISING):
        self._register = bytearray([0b11111111])
        self._user_callback = callback
        self._current_state = False
        self._previous_state = False
        self._pin = pin
        self._pin.init(self._pin.IN, trigger=trigger, handler=self._callback) 
开发者ID:tuupola,项目名称:micropython-m5stack,代码行数:9,代码来源:input.py

示例11: __init__

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def __init__(self, callback=None, trigger=Pin.IRQ_FALLING | Pin.IRQ_RISING):
        pin = Pin(BUTTON_A_PIN, Pin.IN)
        DigitalInput.__init__(self, pin, callback=callback, trigger=trigger) 
开发者ID:tuupola,项目名称:micropython-m5stack,代码行数:5,代码来源:m5stack.py

示例12: on_receive

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def on_receive(self, callback):
        self._on_receive = callback

        if self._pin_rx_done:
            if callback:
                self.write_register(REG_DIO_MAPPING_1, 0x00)
                self._pin_rx_done.irq(
                    trigger=Pin.IRQ_RISING, handler = self.handle_on_receive
                )
            else:
                self._pin_rx_done.detach_irq() 
开发者ID:lemariva,项目名称:uPyLoRaWAN,代码行数:13,代码来源:sx127x.py

示例13: __init__

# 需要导入模块: from machine import Pin [as 别名]
# 或者: from machine.Pin import IRQ_RISING [as 别名]
def __init__(self, pin, callback, extended, *args):  # Optional args for callback
        self._ev_start = Message()
        self._callback = callback
        self._extended = extended
        self._addr = 0
        self.block_time = 80 if extended else 73  # Allow for some tx tolerance (?)
        self._args = args
        self._times = array('i',  (0 for _ in range(_EDGECOUNT + 1)))  # +1 for overrun
        if platform == 'pyboard':
            ExtInt(pin, ExtInt.IRQ_RISING_FALLING, Pin.PULL_NONE, self._cb_pin)
        else:  # PR5962 ESP8266 hard IRQ's not supported
            pin.irq(handler = self._cb_pin, trigger = (Pin.IRQ_FALLING | Pin.IRQ_RISING))
        self._edge = 0
        self._ev_start.clear()
        asyncio.create_task(self._run()) 
开发者ID:peterhinch,项目名称:micropython-async,代码行数:17,代码来源:aremote.py


注:本文中的machine.Pin.IRQ_RISING属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。