Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/gamefunc/micropython_espX_IR_Transceiver

micropython esp32 IR Transceiver
https://github.com/gamefunc/micropython_espX_IR_Transceiver

esp32 ir micropython python

Last synced: 2 months ago
JSON representation

micropython esp32 IR Transceiver

Lists

README

        

# micropython_espX_IR_Transceiver
micropython esp32 IR Transceiver

micropython 基础入门 课件: https://edu.csdn.net/course/detail/25660

# how to use:
# logIRCMD(time list) -> auto save to /buttomCMD.txt, i am use VS/HX1838B:
from irGetCMD import *
a = irGetCMD(25) # 25 is GPIO PIN number

# get log code line -> json.loads -> get the listObject .
from irSelectCMD import *
irCMDList = irSelectCMD(0)

# pwmObject
import machine
irLed = machine.Pin(16, machine.Pin.OUT) # 16 is GPIO PIN number
irLedPwmObject = machine.PWM(irLed, freq=38000, duty=0)

# ir send
irSendCMD(irLedPwmObject, irCMDList, duty=360)