Search found 81 matches

by guyd
Thu Jul 26, 2018 7:28 am
Forum: Programs, Libraries and Tools
Topic: MicroPython IDE
Replies: 13
Views: 37982

Re: MicroPython IDE

I tried PyCharm's plugin to Micropython.
For starters it an IDE, abit not easy to use/ install- but i'm working on it.
it offers flashing of project directly to pyboard.... Nice, but ... not perfect yet
by guyd
Wed Jul 25, 2018 2:52 pm
Forum: ESP32 boards
Topic: pyb module
Replies: 1
Views: 2254

pyb module

I have ESP32, with Python1.9.4 recentrly flashed.
I can't find pyb module. Is it possible to download it ?
by guyd
Wed Jul 25, 2018 2:38 pm
Forum: ESP32 boards
Topic: MicroPython - ESP32 - Is is possible to update files?
Replies: 15
Views: 10021

Re: MicroPython - ESP32 - Is is possible to update files?

Thank you for your answer.

1) I look for loboris - it seems interesting. Does it mean I'll have to flash a new bin of Micropython ? BTW - it is possible to run telnet without loboris ?

2) This is another way to look at it ")
by guyd
Wed Jul 25, 2018 8:35 am
Forum: Programs, Libraries and Tools
Topic: MicroPython IDE
Replies: 13
Views: 37982

Re: MicroPython IDE

well the lack of debugging is main issue- especially since some modules have different syntax, functions and so - which make debuggin only after flashing, tiresome.

Are you familiar with Pycharms MicroPython plugin ?
by guyd
Wed Jul 25, 2018 4:52 am
Forum: Programs, Libraries and Tools
Topic: MQTT Multi-Topic subscribe
Replies: 2
Views: 2932

Re: MQTT Multi-Topic subscribe

Hi,
Thank you for answering.
Didnot see in examples multiple subscriptions- but I'll give it a try.

Guy
by guyd
Wed Jul 25, 2018 4:42 am
Forum: ESP32 boards
Topic: Installing libraries on ESP32
Replies: 16
Views: 21614

Re: Installing libraries on ESP32

right- so I have ESP32 connected, and using rshell successfully to connect ot it.
next step - enter repl and use upip to install?
by guyd
Wed Jul 25, 2018 3:34 am
Forum: Programs, Libraries and Tools
Topic: MicroPython IDE
Replies: 13
Views: 37982

Re: MicroPython IDE

Thank you for replying, I'm using python for more than a year- so I'm not such a begginer :) I've found https://plugins.jetbrains.com/plugin/9777-micropython , a pycharm plugin - which seems great- but I did find a real instuction installing and using it. I have no problem using rshell to flash file...
by guyd
Tue Jul 24, 2018 6:15 pm
Forum: Programs, Libraries and Tools
Topic: MQTT Multi-Topic subscribe
Replies: 2
Views: 2932

MQTT Multi-Topic subscribe

Hi, I wish to subscribe ( as in "regular" Python ) to several topics, when # as wildcard will not solve, for example: Home/Windows/# Home/Light/# but not to : Home/# ( which includes many more ). In Python a list of topics can be defined as TOPICS=[(top1,qos1),(top2,qos2)] Using same method in Micro...
by guyd
Tue Jul 24, 2018 5:48 pm
Forum: ESP32 boards
Topic: Installing libraries on ESP32
Replies: 16
Views: 21614

Re: Installing libraries on ESP32

Python packages are a very long established feature of the Python language and are not MicroPython specific. I suggest a book or online tutorial on the language. If you have an ESP32 connected to the internet you should be able to use upip . What invocation line are you using and what error message...
by guyd
Tue Jul 24, 2018 4:41 pm
Forum: ESP32 boards
Topic: Installing libraries on ESP32
Replies: 16
Views: 21614

Re: Installing libraries on ESP32

1. I suggest trying again without using a datetime directory. To use a directory structure you need to understand Python packages and __init__.py. 2. That invocation line is to install to a PC under the Unix build. 1. succeeded. can you adress to syntax examples ? 2. still don't understand. Is this...