Search found 606 matches

by mikemoy
Tue Dec 18, 2018 8:46 pm
Forum: General Discussion
Topic: Serve HTML from SPIFFS
Replies: 11
Views: 22123

Re: Serve HTML from SPIFFS

I am using file system to store html code of webserver. but in my code there are some css, js file references which are runs over internet. so if network dont have internet my webserver won't see properly like bootstrap. I had the same issue. This is how I resolved it. Hopefully this may help someo...
by mikemoy
Wed Nov 28, 2018 1:53 pm
Forum: Showcase
Topic: New ESP32-WROVER Ethernet Board
Replies: 38
Views: 162714

Re: New ESP32-WROVER Ethernet Board

We would love to see the board design and BOM files to be shared though. Maybe a contantly updated GitHub repo would be useful. If nobody is going to sell it, I would rather put it together myself. Dont have a GitHub account, but there are a few solutions out there already. https://www.amazon.com/E...
by mikemoy
Sat Nov 24, 2018 5:07 am
Forum: General Discussion
Topic: ESP 32 with OTA
Replies: 1
Views: 2557

Re: ESP 32 with OTA

Might be better if you gave some info as to what OTA "sketch" your talking about.
but odds are the information your looking for is in the code or in what you set up in menuconfig
by mikemoy
Sun Nov 18, 2018 3:46 pm
Forum: Showcase
Topic: New ESP32-WROVER Ethernet Board
Replies: 38
Views: 162714

Re: New ESP32-WROVER Ethernet Board

Hey Mike - what's the latest on this? We may have a need for such a product next year. Honestly, I just dont see enough people interested in it to put the resources (money) into making this a product for sale. It's going to cost quite allot to make these in batches to get the price down where peopl...
by mikemoy
Tue Nov 06, 2018 8:53 pm
Forum: General Discussion
Topic: (solved) error when trying to use I2C
Replies: 21
Views: 29677

Re: error when trying to use I2C

ya... when it comes to reading you first write to the chip basically telling it Hey, i want to read from this register next, then you issue the restart, because if you'd issue a stop, you would have effectively told the chip were done, which we are not yet. After the restart, then you issue the read...
by mikemoy
Tue Nov 06, 2018 8:32 pm
Forum: General Discussion
Topic: (solved) error when trying to use I2C
Replies: 21
Views: 29677

Re: error when trying to use I2C

Here is how I read a byte, and later how i read a word. esp_err_t readByte(uint8_t icAddress, uint8_t registerAddress, uint8_t *data) { esp_err_t espRc; i2c_cmd_handle_t cmd = i2c_cmd_link_create(); i2c_master_start(cmd); i2c_master_write_byte(cmd, icAddress << 1 | WRITE_BIT, ACK_CHECK_EN); i2c_mast...
by mikemoy
Tue Nov 06, 2018 12:42 am
Forum: General Discussion
Topic: (solved) error when trying to use I2C
Replies: 21
Views: 29677

Re: error when trying to use I2C

The best advise i can give when starting or using I2C on a new platform is use a I2C device that you can write to without having to read from. Reading is more difficult to debug on a new platform because you wont know if it's your writes or reads that are screwed up. Most guys don't have a logic ana...
by mikemoy
Mon Nov 05, 2018 10:57 pm
Forum: General Discussion
Topic: (solved) error when trying to use I2C
Replies: 21
Views: 29677

Re: error when trying to use I2C

I should point out that the problem may legitimately be in the hardware, as our board is still in design. I just wanted to try to make sure my code was clean first.
Gotcha, depending on how long that will take, maybe just hook up any I2C device from sparkfun / adafruit or amazon.