me-no-dev
22d92e7b7f
Change size of fatfs ioctl returns
2017-10-09 07:18:18 +03:00
me-no-dev
17a1a24009
fix SPIFFS example
2017-10-01 10:27:04 +08:00
Jason K
0cd62852da
I2c reset functionality ( #678 )
...
* Addition of a i2cReset method and timeout handling for the case where the i2c hardware FSM (state machine) gets stuck in a busy state.
* Use newly added i2cReset function within the wire library.
2017-09-29 21:17:13 +08:00
Frederik
10ff1def6d
Add example to update ESP32 via SD card ( #628 )
...
* Add example to update ESP32 via SD card
* Delete update.bin from sd upon finishing update
* remove precompiled binary from example
* Check whether update.bin is a file
2017-09-29 21:16:30 +08:00
me-no-dev
e72895b722
Quiet SSL and HTTPClient debug
2017-09-29 20:31:45 +08:00
me-no-dev
7aa1913506
Allow HTTPS without certificate to use begin(url)
2017-09-29 17:02:59 +08:00
me-no-dev
4230aeca83
Allow HTTPClient to access HTTPS without providing a certificate
2017-09-28 20:19:23 +08:00
me-no-dev
28b7b4e287
Move network events to their own task
2017-09-28 11:41:35 +08:00
Luc
3ba46c7fbc
Add totalBytes / usedBytes to SD/SDMMC ( #673 )
...
to be same as SPIFFS
2017-09-28 10:01:02 +08:00
Arvind Ravulavaru
a66b544d18
Added ESPNow Multi-Slave example ( #669 )
...
* Added ESPNow basic example
* fixed meta doc for slave
* refactored folder structure
* bug fixes
* Added Single Master Multi-Slave
* updated meta docs
2017-09-27 16:46:17 +08:00
me-no-dev
2b6d47ac17
Fix race in SPI endTransaction
2017-09-27 16:27:44 +08:00
Arvind Ravulavaru
4c36e03381
Added ESPNow basic example ( #667 )
...
* Added ESPNow basic example
* fixed meta doc for slave
* refactored folder structure
2017-09-26 17:44:54 +08:00
me-no-dev
eb282131ba
Allow DHCP to be started again by giving a zero IP address to STA config
...
Fixes: https://github.com/espressif/arduino-esp32/issues/654
2017-09-22 12:20:53 +08:00
me-no-dev
1407654c52
Must include sdkconfig.h before testing defines
2017-09-21 19:33:45 +08:00
me-no-dev
c66a020e80
Add guards to not compile BT code if not enabled
2017-09-21 19:08:18 +08:00
Pranav Cherukupalli
17add63139
Add Example Code for WPS Functionality ( #648 )
2017-09-21 16:47:45 +08:00
me-no-dev
4cf0e98f32
Fix desync with IDF in dhcpserver
2017-09-20 15:36:39 +08:00
me-no-dev
f648ad7cea
Allow WiFi Event Callback to read the event info
...
Helps in cases where Event Info is needed (WPS and others)
2017-09-18 17:54:57 +08:00
Me No Dev
29a253ac98
Add initial SPIFFS library ( #627 )
...
* Add initial SPIFFS library
* Fix Deep Sleep Examples
* Missed one example
2017-09-12 11:09:59 +03:00
copercini
9edf65d56e
Static IP example
2017-09-09 00:15:54 -03:00
copercini
ad179548e4
SNI support ( #592 )
...
Server Name Indication (SNI) support for WiFiClientSecure
Fix https://github.com/espressif/arduino-esp32/issues/571 and https://github.com/espressif/arduino-esp32/issues/550
2017-08-23 21:33:26 -03:00
Tomasz Scislowicz
3a8e28dc87
change esp_wifi_scan_start to async mode ( #574 )
2017-08-17 16:12:35 +03:00
me-no-dev
9618eec19e
Set DNS IP to type V4
...
Fixes: https://github.com/espressif/arduino-esp32/issues/553
2017-08-02 09:32:05 +03:00
me-no-dev
3af1710a92
Add initial support for Ethernet and examples
2017-08-02 00:02:45 +03:00
copercini
5c1b10f3bb
Small improvements in update example ( #552 )
...
- 100ms is too low to get server response
2017-08-01 20:12:28 +03:00
me-no-dev
2aed417d09
Enable 1bit SDMMC for Olimex ESP32-EVB
...
Fixes:
https://github.com/espressif/arduino-esp32/issues/495#issuecomment-31604
2612
2017-08-01 18:16:48 +03:00
sticilface
91d02cc6d5
Change disconnect function ( #466 )
...
* Change disconnect function
Current implementation does not disconnect the WiFi. Use of `esp_wifi_disconnect()` does.
* Update WiFiSTA.cpp
put back the clear ssid + password
remove the duplicate `esp_wifi_set_config(WIFI_IF_STA, &conf);`
2017-08-01 12:59:52 +03:00
pbecchi
706bf48708
EEPROM_library_ported_Partition_table_updated ( #535 )
...
* EEPROM_library_ported_Partition_table_updated
* Cleanup & formal corrections
* Make formatting of file consistent.
Readability change, Concern about the SubType being 0x99.
* Code formatting cleanup
* Code formatting cleanup
* Code formatting cleanup
* Remove commented out code
* Restore dropped bracket
* Update EEPROM.cpp
* Format Corrections
* deletedExample
* Corrected example
* Deleted interrupts/nointerrupts
* Update EEPROM.cpp
2017-08-01 12:51:38 +03:00
bbx10
37ef5a43e3
Handle partial socket send ( #503 )
...
send() can return a value > 0 but less than size indicating it was able to accept some of the data in buffer. The caller must try again after updating the buffer pointer and size remaining.
2017-07-31 22:51:41 +03:00
Glen McGillan
2eaf846134
Spi pattern fix ( #502 )
...
* Add files via upload
Calls to writePattern() don't send the desired number of bytes when the pattern size doesn't divide evenly into the hardware FIFO size (e.g. sending 18-bit RGB data, 11 patterns take 63 bytes, so 1/64th of the data is never sent).
* Add files via upload
Remove white space changes.
2017-07-31 22:50:57 +03:00
Andreas Pokorny
b3fdfda914
Bugfix: Put every SPI access between begin / end Transaction ( #509 )
...
The change intrdocues a local RAII helper to simplify maintaining begin/end scopes
Signed-off-by: Andreas Pokorny <andreas.pokorny@siemens.com>
2017-07-31 22:46:15 +03:00
dstoiko
d8330cceec
Added file.close() in manipulation functions ( #514 )
2017-07-17 03:44:04 +03:00
me-no-dev
13bb22de30
Fix SD Card not properly initializing
2017-07-07 11:34:54 +03:00
Joey Babcock
ad2adce65e
Edit comments for clarity ( #478 )
...
* Edit comments for clarity
I was a little confused reading what this sketch did the first time so I attempted to edit these for clarity.
* code edits as well
Grammar fixes for some parts of the code as well
2017-07-02 17:54:20 +02:00
Pranav Cherukupalli
1be6a5c361
ESP32: Add DeepSleep examples ( #473 )
...
*Added a Timer wakeup example
*Added a Touch wakeup example
*Added an external source wakeup example
2017-06-29 09:31:39 +02:00
copercini
cfde557916
Heap optimization ( #471 )
...
* Remove duplicated include
* Clear certificates just after handshake
It can save up to 7k of heap
2017-06-29 09:30:59 +02:00
Pranav Cherukupalli
87093368d9
ResetReason: Add an additional method and a test case ( #467 )
...
Method:
--------
Added a verbose print method for ease.
Test Case:
-----------
Putting ESP32 to sleep will give a different reason on wake than the first
time power up.
2017-06-27 14:17:55 +02:00
Brian Degger
839318c0eb
Create hall_effect_esp32.ino ( #450 )
...
* Create hall_effect_esp32.ino
A simple example to access the hall effect sensor in the esp32
* Create hall_effect.ino
* Update hall_effect.ino
Simple sketch to access the internal hall effect detector on the esp32
* Delete hall_effect_esp32.ino
* Create HallSensor.ino
* Update HallSensor.ino
* Update HallSensor.ino
* Delete hall_effect.ino
2017-06-21 14:16:47 +02:00
copercini
023a32bc12
Print last reset reason example ( #458 )
2017-06-21 12:53:44 +02:00
me-no-dev
7811668fb1
Make sure that WiFi is started before trying to erase configuration.
...
Connected to: https://github.com/espressif/arduino-esp32/issues/400
2017-06-21 12:42:58 +03:00
me-no-dev
409926ef77
Fix commits duplicating methods
2017-06-14 13:48:48 +03:00
bbx10
b05c7dfa59
Additions to WiFiClient and WiFiServer ( #404 )
...
Required for WebServer and/or DNSServer libraries
2017-06-14 10:22:16 +02:00
bbx10
26677a4b05
Add WiFiClient localIP and localPort ( #428 )
...
Implement methods from ESP8266WiFiClient but use sockets API.
2017-06-14 10:17:14 +02:00
SO_yeah
73cd8d7f7e
set max clients from code ( #432 )
...
* Update WiFiAP.cpp
set from code the maximum number of clients to smaller than 4 (in my case i must allow only one client at a time)
* Update WiFiAP.h
* Update WiFiAP.cpp
* Update WiFiAP.cpp
* Create WiFiAP.cpp
2017-06-14 10:14:14 +02:00
Joey Babcock
4d47deab24
Some grammar/spelling fixes ( #438 )
2017-06-14 10:12:59 +02:00
Arvind Ravulavaru
8965358bd3
added OTA Update S3 example with a sample bin ( #445 )
...
* added OTA Update S3 example with a sample bin
* Update as per comments
2017-06-14 10:12:39 +02:00
me-no-dev
bf60ca7e3b
Fix enable Update partition (only)
2017-06-03 20:11:41 +03:00
me-no-dev
c2f83f48e0
Revert "Fix enable Update partition"
...
This reverts commit 63e1daa5ea67ce0f9b89b789e4bb26672f64d32e.
2017-06-03 20:11:41 +03:00
me-no-dev
2e5743eaa1
Fix enable Update partition
2017-06-03 20:11:41 +03:00
me-no-dev
5b216b6622
Updater was missing enablePartition
2017-06-02 18:29:37 +03:00