Search found 5 matches

by misisnik
Tue Mar 13, 2018 8:05 am
Forum: Development of MicroPython
Topic: ESP8266 _thread lib
Replies: 2
Views: 2280

Re: ESP8266 _thread lib

for example in this project https://github.com/bmellstrom/esp8266-arduino-threads is possible. If it is what i mean...
by misisnik
Mon Mar 12, 2018 8:09 pm
Forum: Development of MicroPython
Topic: ESP8266 _thread lib
Replies: 2
Views: 2280

ESP8266 _thread lib

Hello, is it possible to compile MicroPython for ESP8266 module with _thread lib ?
by misisnik
Fri Mar 09, 2018 2:29 pm
Forum: ESP8266 boards
Topic: Network scan callback
Replies: 2
Views: 2183

Re: Network scan callback

Is it possible to do wlan scan faster or to run it with uasincio and pulling data from i2c while wlan scan has running????
by misisnik
Thu Feb 01, 2018 8:33 am
Forum: ESP8266 boards
Topic: Network scan callback
Replies: 2
Views: 2183

Network scan callback

Hello
is it possible to set callback when network scan (get RSSI and MAC address of APs) is in process?

This scan takes at least 2 seconds and in this time I want to do another things with i2c and get the scan result when is done.

Thanks Mike
by misisnik
Wed Jan 17, 2018 7:40 am
Forum: ESP8266 boards
Topic: Uart communication
Replies: 1
Views: 1724

Uart communication

Hello I have a problem with UART0 communication with my PC from ESP8266. My main.py code looks like (it should send magnetometer data throw UART) from machine import Pin, I2C from lsm303e import LSM303 import time i2c = I2C(scl=Pin(5), sda=Pin(4), freq=400000) lsm303 = LSM303(i2c) p2 = Pin(2, Pin.OU...