Search found 45 matches

by Meekdai
Wed Mar 28, 2018 6:38 am
Forum: MicroPython pyboard
Topic: webrepl on PYBv1.0
Replies: 5
Views: 3909

Re: webrepl on PYBv1.0

To solve this problem, I replaced W5500 with CH9121, because CH9121 is UART interface.

Code: Select all

uart = UART(4)
uart.init(baudrate=115200, bits=8, parity=None, stop=1)
uos.dupterm(uart)
by Meekdai
Tue Mar 27, 2018 1:55 am
Forum: MicroPython pyboard
Topic: webrepl on PYBv1.0
Replies: 5
Views: 3909

Re: webrepl on PYBv1.0

pythoncoder wrote:
Mon Mar 26, 2018 6:26 am
The WebREPL was written specifically for the ESP8266. As far as I know nobody has ported it to Pyboard wired Ethernet.
I think WebREPL is very useful. Is it difficult to transplant WebREPL to Pyboard ?
by Meekdai
Mon Mar 26, 2018 1:08 am
Forum: MicroPython pyboard
Topic: webrepl on PYBv1.0
Replies: 5
Views: 3909

Re: webrepl on PYBv1.0

No one to help answer it? :(
by Meekdai
Wed Mar 21, 2018 3:03 am
Forum: MicroPython pyboard
Topic: webrepl on PYBv1.0
Replies: 5
Views: 3909

webrepl on PYBv1.0

Hello everyone, I want to use webrepl on PYBv1.0, but I didn't find help at http://docs.micropython.org/en/latest/pyboard/search.html?q=webrepl&check_keywords=yes&area=default Through the forum, I found that 'uos.dupterm()' seems to help me 。 Here is my code: import pyb import network import uos nic...
by Meekdai
Mon Jan 29, 2018 12:59 pm
Forum: MicroPython pyboard
Topic: I2C can not read
Replies: 1
Views: 1733

I2C can not read

Hi everyone, I use pyboard to read an I2C device, I only connect one device, but can scan to a lot of. My I2C device is MCX514 Here my code on the REPL [code] MicroPython v1.9.3 on 2017-11-01; PYBv1.0 with STM32F405RG Type "help()" for more information. >>>from machine import Pin, I2C >>>i2c = I2C(s...