Search found 166 matches

by MostlyHarmless
Fri Oct 30, 2020 1:42 am
Forum: ESP32 boards
Topic: Add Terminal to webpage
Replies: 1
Views: 1250

Re: Add Terminal to webpage

Have you thought about incorporating the term.js of WebREPL into the website, served by the ESP32? That should give you a ready to use terminal.


Best Regards, Jan
by MostlyHarmless
Thu Oct 29, 2020 5:43 pm
Forum: ESP32 boards
Topic: Upload file of 250kB or more
Replies: 10
Views: 4831

Re: Upload file of 250kB or more

BL007, FTP is a protocol. The File Transfer Protocol, to be specific. Having an FTP server on the device doesn't mean that the user has to fiddle with some separate FTP client program. There are FTP client libraries for pretty much every language and platform. Using them will become part of your end...
by MostlyHarmless
Thu Oct 29, 2020 4:15 am
Forum: Other Boards
Topic: [NUCLEO-L476RG] How to compile main.py and send to board
Replies: 6
Views: 4071

Re: [NUCLEO-L476RG] How to compile main.py and send to board

humberto ontiveros wrote:
Thu Oct 29, 2020 3:25 am
Hi, i am having the same problem wiht a STM32 NUCLEO-L432KC, were you able to solve it wiht pyborad.py? and by the way what IDE do you use for develop yours scripts for this board?
Another option to transfer files to boards that have a USB based REPL is ampy.
by MostlyHarmless
Wed Oct 28, 2020 9:53 pm
Forum: Other Boards
Topic: [NUCLEO-L476RG] How to compile main.py and send to board
Replies: 2
Views: 1819

Re: [NUCLEO-L476RG] How to compile main.py and send to board

To do it via USB you can use ampy (the Arduino Micropython tool). The link contains instructions how to install and basic usage. Make sure you exit picocom while using ampy to upload/download files.


Regards, Jan
by MostlyHarmless
Wed Oct 28, 2020 3:09 am
Forum: ESP32 boards
Topic: Upload file of 250kB or more
Replies: 10
Views: 4831

Re: Upload file of 250kB or more

I got away from using FTP because that's zu complicated for the future users. Robert's FTP Server funktioniert wunderbar mit curl(1). Back to english as to not exclude anyone from the discussion. If your preference is a browser based interface, I am wondering if there might be some JS library out t...
by MostlyHarmless
Sat Oct 24, 2020 3:02 am
Forum: ESP8266 boards
Topic: Telnet Server
Replies: 31
Views: 34643

Re: Telnet Server

Telnet and ftp are also included in the CC3200 port (Wipy1) as C code. AFAIK, that port was maintained by Danuel Campora. Pycom resp. Daniel used this code for the Pycom products. Does that mean they have password protected but unencrypted telnet and ftp servers? If so I suggest that people check o...
by MostlyHarmless
Thu Oct 22, 2020 7:56 pm
Forum: ESP8266 boards
Topic: Telnet Server
Replies: 31
Views: 34643

Re: Telnet Server

I'm just trying to find a telnet server that will work with the Pymakr extension for VS Code. It was created for the Pycom telnet server and requires authentication to connect. Understood. However, as a general rule of thumb I would always expect the more powerful system to accommodate for the limi...
by MostlyHarmless
Thu Oct 22, 2020 6:06 pm
Forum: ESP8266 boards
Topic: Telnet Server
Replies: 31
Views: 34643

Re: Telnet Server

Also I created a pull request for a tiny patch that makes utelnetserver work on an ESP32 running current HEAD again.

https://github.com/cpopp/MicroTelnetServer/pull/5


Regards, Jan
by MostlyHarmless
Thu Oct 22, 2020 5:54 pm
Forum: ESP8266 boards
Topic: Telnet Server
Replies: 31
Views: 34643

Re: Telnet Server

Are there any MicroPython telnet server libraries that support authentication? Any sort of password based authentication without an encrypted connection is not going to give you added security on a telnet protocol. You won't be able to perform something like server side provided salt with MD5 hashi...
by MostlyHarmless
Sat Mar 07, 2020 5:29 am
Forum: Hardware Projects
Topic: plant watering
Replies: 41
Views: 183894

Re: plant watering

For making sure there is water in the reservoir a simple float switch should do. That switch would be closed if there is water in the reservoir and open where there isn't. Think of the principle of a sump pump or the condensate pump of an air condition system. The condensate pump of an air condition...