Search found 8 matches

by Nick Chung
Fri Mar 16, 2018 9:34 am
Forum: General Discussion
Topic: Hornbill ESP32 Dev - Brownout detector was triggered
Replies: 4
Views: 12089

Re: Hornbill ESP32 Dev - Brownout detector was triggered

I had the same problem before, because LOW vol (i used 1 diot ) ...just check power is 3.3v in put for esp32. Then check the current power too to make sure it have normal power working. :D
by Nick Chung
Fri Sep 15, 2017 12:14 pm
Forum: ESP-IDF
Topic: How to use 4Mb external PSRAM on ESP32 WROVER module.?
Replies: 5
Views: 9342

Re: How to use 4Mb external PSRAM on ESP32 WROVER module.?

Thanks Loboris for your recommend, i think you are right.
by Nick Chung
Fri Sep 15, 2017 5:26 am
Forum: ESP-IDF
Topic: How to use 4Mb external PSRAM on ESP32 WROVER module.?
Replies: 5
Views: 9342

Re: How to use 4Mb external PSRAM on ESP32 WROVER module.?

Thanks WIFIVE so much, that topics pretty hard with newbie like me. Can you write a example code to use eaier , i just want use this PSRAM to save bounch of bytes array , read and write single byte at a adress cell . PLease help me WIFIVE :D im still waiting for your help.
by Nick Chung
Fri Sep 15, 2017 1:17 am
Forum: ESP-IDF
Topic: How to use 4Mb external PSRAM on ESP32 WROVER module.?
Replies: 5
Views: 9342

How to use 4Mb external PSRAM on ESP32 WROVER module.?

https://www.cnx-software.com/wp-content/uploads/2016/12/ESP32-WROVER.jpg As i know ESP32-WROVER has 4 mega bytes external PSRAM,very use full and it cost not too much ,so i decide to buy a module in the future, but now i can't found any examples or information to use this 4MB SRAM on it. Can any on...
by Nick Chung
Mon May 08, 2017 2:45 pm
Forum: ESP32 Arduino
Topic: Where is my RAM ?, i want more !
Replies: 8
Views: 42181

Re: Where is my RAM ?, i want more !

Here is my code, just Examples.: uint8_t b[130000];// 130k bytes void setup() { Serial.begin(9600); } void loop() { Serial.println("Ok !"); b[1]=0; delay(1000); } "Sketch uses 105,566 bytes (10%) of program storage space. Maximum is 1,044,464 bytes. Global variables use 139,492 bytes (47%) of dynami...
by Nick Chung
Sun May 07, 2017 1:39 pm
Forum: ESP32 Arduino
Topic: pins_arduino
Replies: 2
Views: 6526

Re: pins_arduino

Easy , just use number on the ESP32 board. Ex: if you want use D2 pin (on the board) like Blynk., you connect LED to that pin, your code is : void setup(){ pinMode(2,OUTPUT); } void loop(){ digitalWrite(2,HIGH); delay(1000); digitalWrite(2,LOW); delay(1000); } The note is : pin map of ESP32 versions...
by Nick Chung
Sun May 07, 2017 5:03 am
Forum: ESP32 Arduino
Topic: Where is my RAM ?, i want more !
Replies: 8
Views: 42181

Where is my RAM ?, i want more !

im progamming ESP32 with arduino IDE. I choose ESP32 because It has big RAM and ROM, super Fast clock. But,Why esp32' RAM is smaller than i though (500k) ?. Just 299912 bytes RAM . hummmm. :( :( I used 130000 byte for a BIG array. i think my skecth will around 170000 bytes. (It's free about 120000 b...