Search found 77 matches

by ESP_Me-no-dev
Mon Oct 17, 2016 2:45 pm
Forum: General Discussion
Topic: RTOS_SDK template problem
Replies: 4
Views: 8933

Re: RTOS_SDK template problem

You are using the wrong SDK :)
Look here: https://github.com/espressif/esp-idf
by ESP_Me-no-dev
Mon Oct 17, 2016 2:43 pm
Forum: ESP32 Arduino
Topic: How to add ESP32 in Arduino for Mac?
Replies: 6
Views: 16976

Re: How to add ESP32 in Arduino for Mac?

first open Terminal.app
then:

Code: Select all

mkdir -p ~/Documents/Arduino/hardware/espressif
cd /Documents/Arduino/hardware/espressif
git clone https://github.com/espressif/arduino-esp32.git esp32
cd esp32/tools
python get.py
then open/restart Arduino IDE
by ESP_Me-no-dev
Tue Oct 11, 2016 7:20 am
Forum: ESP32 Arduino
Topic: 2nd Serial Port Access
Replies: 10
Views: 37259

Re: 2nd Serial Port Access

There was a problem with SerialRX because we switched to APP CPU for the loop thread, but I should have it fixed in a commit a few hours ago. Please pull the latest changes and try again :)
by ESP_Me-no-dev
Mon Oct 10, 2016 10:11 am
Forum: News
Topic: Arduino for ESP32
Replies: 11
Views: 42466

Re: Arduino for ESP32

@MarsWarrior default I2C pins are defined only in software. There are no default pins for I2C actually and they are all attached through the pin matrix. Me and Ivan have decided to use those particular ones as they are attached to the gpio power and do not have any other major Arduino uses (like ADC...
by ESP_Me-no-dev
Mon Oct 10, 2016 10:01 am
Forum: News
Topic: Arduino for ESP32
Replies: 11
Views: 42466

Re: Arduino for ESP32

@a2retro You can attach all 3 UARTs to any pins you like (almost). Pins 9 and 10 are tied to your flash chip, so I would not use them for Serial. You can check esp32-hal-uart.h if you want C style api to the serial or just use HardwareSerial Serial1(1); and then Serial1.begin(baudrate, SERIAL_8N1, r...
by ESP_Me-no-dev
Fri Oct 07, 2016 7:28 am
Forum: News
Topic: Arduino for ESP32
Replies: 11
Views: 42466

Re: Arduino for ESP32

Hey Neil :) Says 1.6.9 because that is the last version I have here and did not put much thought into it yet. Will test newer versions and will update the tools we have for arduino to cover the new stuff as well. Currently get.py only downloads the toolchain and nothing more. Will do more things in ...
by ESP_Me-no-dev
Thu Oct 06, 2016 2:36 pm
Forum: News
Topic: Arduino for ESP32
Replies: 11
Views: 42466

Arduino for ESP32

Hello everyone! I'm glad to announce to you that an initial Arduino environment for the ESP32 has been uploaded HERE . Not everything is working yet, you can not get it through package manager, but you can give it a go and help us find bugs :) The framework can also be downloaded as component in an ...
by ESP_Me-no-dev
Fri Feb 19, 2016 3:34 pm
Forum: General Discussion
Topic: Arduino IDE for ESP32
Replies: 6
Views: 33798

Re: Arduino IDE for ESP32

Aye. Just for clarity: I wasn't trying to sweep the excellent work you did under the rug; just saying that Espressif actually is aware of the Arduino environment and we're taking active steps to help on that environment, although they may not be outwardly visible at this moment. We need to get the ...
by ESP_Me-no-dev
Thu Feb 18, 2016 12:23 pm
Forum: General Discussion
Topic: Arduino IDE for ESP32
Replies: 6
Views: 33798

Re: Arduino IDE for ESP32

There already is Arduino support. At least for the things that have been disclosed so far. Support will be added as Espressif releases anything new (last update was committed on Dec 18, 2015).
https://github.com/me-no-dev/ESP31B
by ESP_Me-no-dev
Wed Feb 03, 2016 9:54 am
Forum: General Discussion
Topic: Receiving Data from client
Replies: 2
Views: 6533

Re: Receiving Data from client

Check LWIP headers. All network functionality is there (apart from udp multicast).
There is no espconn_* but espconn is an abstraction of the lwip provided functions anyway.