Search found 3 matches

by BikerMark
Thu Jan 21, 2021 4:57 pm
Forum: ESP32 boards
Topic: example BLE micropython
Replies: 9
Views: 33364

Re: example BLE micropython

@HexVitor thnx for sharing, your code worked well for me! One typo I found in the IRQ and share here for anyone to come by: elif event == 4: should be: elif event == 3: And I cannot figure out why if received == 'blue_led': is not recognizing the litteral string. If I add an else-statement, the latt...
by BikerMark
Sat Dec 19, 2020 6:43 pm
Forum: Development of MicroPython
Topic: uPyCraft REPL behaviour differs from upload/run
Replies: 1
Views: 1403

Re: uPyCraft REPL behaviour differs from upload/run

Oh Oh... Just figured out I was trying to control a Fawlty LED! :oops:
by BikerMark
Fri Dec 18, 2020 7:31 pm
Forum: Development of MicroPython
Topic: uPyCraft REPL behaviour differs from upload/run
Replies: 1
Views: 1403

uPyCraft REPL behaviour differs from upload/run

Hi, Hopefully somebody can help me out here. I must be overlooking something... When I upload and run this file with uPyCraft 1.1 onto my ESP32 Devkit C it runs fine. These lines make an array of LEDs lightning up and extinguishing again flawlesly (nice for next to the Christmas tree:). import machi...