Search found 3667 matches

by Roberthh
Sat Dec 15, 2018 10:15 am
Forum: ESP32 boards
Topic: New Lolin D32 Pro with 4MB PSRAM
Replies: 46
Views: 41283

Re: New Lolin D32 Pro with 4MB PSRAM

That's hard to tell. My experience is varying. With the ESP32 port, I have an 8 G Samsung card, which fails, and a 32 G Sandisk card, which works well, and so on. On a PyBoard, all card work well
by Roberthh
Fri Dec 14, 2018 6:16 am
Forum: MicroPython pyboard
Topic: WS2813 RGB LED strip driver
Replies: 5
Views: 5395

Re: WS2813 RGB LED strip driver

I tested the code for WS2812 below with a Pycom device and a 24 Pixel ring. The SPI init/call might have to be adapted. It worked to some extend, but the timing is not very precise. There are gaps between the words when sending by SPI, and if these are too long, it is considered as reset. The data b...
by Roberthh
Thu Dec 13, 2018 10:31 am
Forum: ESP8266 boards
Topic: Type Casting
Replies: 2
Views: 2119

Re: Type Casting

You might have to strip off \n\r from the lines you read.
And in your example. what is the content of tmp?
by Roberthh
Tue Dec 11, 2018 3:18 pm
Forum: Programs, Libraries and Tools
Topic: Signal processing (main frequency)
Replies: 5
Views: 4248

Re: Signal processing (main frequency)

Complex numbers seem to be enabled in the ESP32 build. But I never worked with them. Maybe @pythoncoder knows more. He usually reads the posts in the morning and late afternoon. I will not be able to test in on and ESP32 before tomorrow.
by Roberthh
Tue Dec 11, 2018 1:39 pm
Forum: Programs, Libraries and Tools
Topic: Signal processing (main frequency)
Replies: 5
Views: 4248

Re: Signal processing (main frequency)

@pythoncoder has a fft script here: https://github.com/peterhinch/micropyth ... orithms.py
If you look around at that place, you'll find a lot of useful information.
by Roberthh
Tue Dec 11, 2018 12:00 pm
Forum: General Discussion and Questions
Topic: Micropython as Arduino killer
Replies: 24
Views: 20834

Re: Micropython as Arduino killer

Ît cannot be said often enough:
The documentation of Micropython is good. It is reccomended for everyone to read it COMPLETELY even twice or thrice, to have an impression, what can be expected where is what. Thanks a lot to everyone who contributed, especially Paul, Damien, and Peter.
by Roberthh
Tue Dec 11, 2018 6:18 am
Forum: ESP32 boards
Topic: ESP32 and LoRa
Replies: 70
Views: 99774

Re: ESP32 and LoRa

Not at all. But I had quite a few troubles with cheap crap. Of the 6 or so generic ESP32 boards only the Sparkfun device works without problems. At that one is in the price range of a WiPy. The other five (Wemos) work more or less. Two of them required physical rework (bad soldering), another one is...
by Roberthh
Mon Dec 10, 2018 9:21 pm
Forum: ESP32 boards
Topic: ESP32 and LoRa
Replies: 70
Views: 99774

Re: ESP32 and LoRa

This is not a single place. There is a call to esp_get_revision() and esp_chip_info() in various places. You must change all places where esp_get_revision() and esp_chip_info() is called and hard code the '0' branch. Grep will tell you the places. The relevant files are main.c and mpthreadport.c and...
by Roberthh
Fri Dec 07, 2018 9:26 am
Forum: General Discussion and Questions
Topic: [Solved] Can't access REPL on macOS - Works on Windows
Replies: 13
Views: 8887

Re: Can't access REPL on macOS - Works on Windows

The garbage at the startup is normal. The ESP8266 boot ROM send it first messages at a baud rate of about 74800 baud.
by Roberthh
Thu Dec 06, 2018 8:52 pm
Forum: General Discussion and Questions
Topic: [Solved] Can't access REPL on macOS - Works on Windows
Replies: 13
Views: 8887

Re: Can't access REPL on macOS - Works on Windows

Ok. Has the terminal program settings for flow control, which could be set to none?
b.t.w.: which terminal programndo you use? For convenience I use picocom. screen seemed overfeatured for my purpose.