We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
had to change to tcxoVoltage=0 because the example code one just fails to run
Send
import time sx = SX1262(spi_bus=1, clk=14, mosi=15, miso=24, cs=13, irq=16, rst=23, gpio=18) # LoRa sx.begin(freq=433, sf=12, cr=8, syncWord=0x12, power=1, currentLimit=60.0, preambleLength=8, implicit=False, implicitLen=0xFF, crcOn=True, txIq=False, rxIq=False, tcxoVoltage=0, useRegulatorLDO=False, blocking=True) while True: sx.send('Hello World!') time.sleep(10)
Receive
import time sx = SX1262(spi_bus=1, clk=14, mosi=15, miso=24, cs=13, irq=16, rst=23, gpio=18) # LoRa sx.begin(freq=433, sf=12, cr=8, syncWord=0x12, power=1, currentLimit=60.0, preambleLength=8, implicit=False, implicitLen=0xFF, crcOn=True, txIq=False, rxIq=False, tcxoVoltage=0, useRegulatorLDO=False, blocking=True) while True: msg, err = sx.recv() if len(msg) > 0: error = SX1262.STATUS[err] print(msg) print(error)
the board pinout
The text was updated successfully, but these errors were encountered:
Hi,
You need to manually switch pin 17 to TX or RX mode before you TX or RX as this is not implemented in the library.
Sorry, something went wrong.
No branches or pull requests
had to change to tcxoVoltage=0 because the example code one just fails to run
Send
Receive
the board pinout
The text was updated successfully, but these errors were encountered: