Search found 7 matches

by fmentiplay
Sat Jan 30, 2021 12:42 pm
Forum: Programs, Libraries and Tools
Topic: rshell cp command not working on Raspberry Pi Pico with MicroPython installed
Replies: 37
Views: 22020

Re: rshell cp command not working on Raspberry Pi Pico with MicroPython installed

I have a version of rshell that works for me (at least better than the released version). It can be found on the pico branch of https://github.com/dhylands/rshell If you checkout the git repository you can use the ./r.py script to run rshell from your local github tree. The changes I made are here:...
by fmentiplay
Fri Jan 29, 2021 10:00 am
Forum: Programs, Libraries and Tools
Topic: rshell cp command not working on Raspberry Pi Pico with MicroPython installed
Replies: 37
Views: 22020

Re: rshell cp command not working on Raspberry Pi Pico with MicroPython installed

mpr works fine. Maybe you could compare it with what rshell implements. Hello Robert Thank you for offering your thoughts. Excuse my ignorance but is MPR similar to rshell? I tried to find it on the net without success. Could you please give me a bit of info about mpr? Much appreciated Regards Frank
by fmentiplay
Fri Jan 29, 2021 9:54 am
Forum: Programs, Libraries and Tools
Topic: rshell cp command not working on Raspberry Pi Pico with MicroPython installed
Replies: 37
Views: 22020

Re: rshell cp command not working on Raspberry Pi Pico with MicroPython installed

My RPi pico board showed up. I'm able to copy some files (like these 2 from the README.md: https://github.com/dhylands/upy-examples/tree/master/pico) but I was unable to copy the pwm_fade.py exampls from the ports/rp2/examples directory. I'm not sure exactly what's going on, but I'm going to guess ...
by fmentiplay
Thu Jan 28, 2021 7:59 am
Forum: Programs, Libraries and Tools
Topic: rshell cp command not working on Raspberry Pi Pico with MicroPython installed
Replies: 37
Views: 22020

rshell cp command not working on Raspberry Pi Pico with MicroPython installed

Hello All I am running MicroPython on the new Raspberry Pi Pico. I am trying to use rshell to copy files from my Windows 10 PC to the Raspberry Pi Pico. PS C:\Users\xxxxl> rshell -p com14 -b 115200 --buffer-size 512 -> this works fine C:\Users\xxxxx> ls /pyboard pico_hello.py pico_i2c_scan.py pico_o...
by fmentiplay
Thu Oct 29, 2020 11:12 pm
Forum: General Discussion and Questions
Topic: I2C TypeError:extra positional arguments given
Replies: 2
Views: 3945

Re: I2C TypeError:extra positional arguments given

Thank You for your very clear answer. Very much appreciated
by fmentiplay
Thu Oct 29, 2020 11:56 am
Forum: General Discussion and Questions
Topic: I2C TypeError:extra positional arguments given
Replies: 2
Views: 3945

I2C TypeError:extra positional arguments given

This code works ... >>>From machine import I2C, Pin >>>i2c = I2C(scl=Pin(22), sda=Pin(21)) This code has error ... >>>From machine import I2C, Pin >>>scl = Pin(22) >>>sda = Pin(21) >>>i2c = I2C(scl, sda) Traceback (most recent call last): File "<stdin", line 1, in <module> TypeError: extra positiona...
by fmentiplay
Fri Feb 14, 2020 12:44 am
Forum: Programs, Libraries and Tools
Topic: MicroPython SPI code problems
Replies: 1
Views: 1763

MicroPython SPI code problems

Hello I have an ESP32(WROOM) running latest MicroPython (MicroPython v1.12-119-g61f64c78a on 2020-02-01; ESP32 module with ESP32) connected to a 2.8" 240x320 TFT with ili9341 driver chip, via SPI. Using a ili9341 MicroPython driver ( e.g ili9341 from Adafruit or similar) I can draw shapes, text etc....