Search found 300 matches

by Vader_Mester
Tue Mar 20, 2018 10:39 am
Forum: General Discussion
Topic: SK6812 RGBW LEDs flickering - RMT Driver
Replies: 10
Views: 15578

Re: SK6812 RGBW LEDs flickering - RMT Driver

Where did you measure the waveform? At the DIN of the LED? The waveform looks correct (maybe try to increase the high part of bit 1 a bit longer). The thing I'm not sure if can cause problems, is the high amount of overshoot, like 200-300mV. I read somewhere (maybe on Adafruit), that these LEDs don ...
by Vader_Mester
Tue Mar 20, 2018 9:15 am
Forum: General Discussion
Topic: Header files not found by ECLIPSE
Replies: 4
Views: 6435

Re: Header files not found by ECLIPSE

I finally managed to get around the issue. Somehow Eclipse had problems if I had some build files already in the new project... So i reset everything and now everything is found. Thanks for the support. PS: This information should be included in the docomentation, so noobs like me can see it right a...
by Vader_Mester
Mon Mar 19, 2018 7:06 pm
Forum: General Discussion
Topic: Header files not found by ECLIPSE
Replies: 4
Views: 6435

Re: Header files not found by ECLIPSE

I watched the video, and it helped, although I might be messing up something badly. Will do some checks...
It's not as simple on Windows as on linux though :(

BTW you have a wonderful style and voice for these kinds of videos, keep up the good work 8-)
by Vader_Mester
Mon Mar 19, 2018 11:42 am
Forum: General Discussion
Topic: Header files not found by ECLIPSE
Replies: 4
Views: 6435

Header files not found by ECLIPSE

Hi Guys, I'm a bit new to Eclipse. I followed the steps in setting up the projects to work with esp-idf. It seems that Eclipse is unable to find the header files in the esp-idf directory, and therefore things like ESP specific variables and type definitions (uint8_t for example) are not found. Any i...
by Vader_Mester
Sun Mar 18, 2018 9:14 am
Forum: General Discussion
Topic: What is the data rate of esp_now?Can esp_now be used as a large amount of data transmission?
Replies: 1
Views: 6501

Re: What is the data rate of esp_now?Can esp_now be used as a large amount of data transmission?

The ESP Now is not intended to be used with high data rate... however maybe there are ways to do.
It's a MAC layer transmission protocol, which means that the realiability of the data getting through is not guaranteed.

You must experiment with this, to see how fast can you transmit.

Vader[BEN]
by Vader_Mester
Wed Mar 14, 2018 7:11 am
Forum: General Discussion
Topic: How would I interface with this bus switch
Replies: 3
Views: 4914

Re: How would I interface with this bus switch

The datasheet says the control inputs are TTL compatible. That means anything over 2.0V should be recognised as 'high'. So I would say that there's no need for a MOSFET circuit. BTW: as the 'on' resistance of each switch is about 4Ω, I don't understand how this device can do level shifting. I don't...
by Vader_Mester
Tue Mar 13, 2018 3:02 pm
Forum: General Discussion
Topic: How would I interface with this bus switch
Replies: 3
Views: 4914

Re: How would I interface with this bus switch

Hi, My short answer is: Yes, you can drive them low, but because it is 5V, you will need an N-channel MOSFET. A "schematic" is seen below. You need to set your GPIO high, to turn the MOSFET on, and drive the OE pin to ground. When the MOSFET is off (GPIO low), the 10kOhm resistor will pull the OE pi...
by Vader_Mester
Tue Mar 13, 2018 7:12 am
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 836071

Re: What would you like to see in The Next Chip?

Reading Sprites post, I'm very happy, he summed it up, with teasing short term things as well :) I was just thinking about the GPIO thing the other day. As far as I know, the ESP is only 1 version of silicon, to make only 1 design, and manufacture everything veeeeery cheap, hence the extremely low p...
by Vader_Mester
Mon Mar 12, 2018 7:38 pm
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 836071

Re: What would you like to see in The Next Chip?

My real struggle with the current chip is making it function in a low-power environment. This primarily means (at least to me) the ability to run for an extended period on battery without losing the ability to interact with the system, i.e. receiving either/both wifi and ble requests, waking up and...
by Vader_Mester
Sun Mar 11, 2018 5:49 pm
Forum: General Discussion
Topic: Microsecond or fraction of microsecond delay
Replies: 2
Views: 5963

Re: Microsecond or fraction of microsecond delay

Thanks for this idea. I might check this.

Vader[BEN]