Search found 1 match

by Luit
Sat Feb 25, 2017 12:05 pm
Forum: WiPy and CC3200 boards
Topic: GPIO irq callback problem
Replies: 1
Views: 3467

GPIO irq callback problem

Hi, I have exactly the same problem as described in http://forum.micropython.org/viewtopic.php?f=11&t=2583. Here is my main.py: import machine import urequests from machine import Pin def pincb(pin): url = "(my test url)" params = { "test": "true" } urequests.urlopen(url, "GET", params) p_out = Pin(...