forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
update #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
update #1
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Update SDK to 1.5.2 (#1653)
Fix pulseIn
Clean up variants, fix digitalPinHasPWM definition
In WPA protocol, the maximum length of the passphrases are 64 characters in order to distinguish them from the actual PSK who is 64 ASCII characters long, so in most systems if a 64 chars string is passed, it is assumed to be a PSK, otherwise is treated as a passphrase and is used to compute the PSK.
Changed timeout to unsigned long. Using addition with millis() is not recommended. Source: http://www.gammon.com.au/millis
thanks to @chaeplin for finding the mistake
Fix timeout logic in WiFiClient example
Complete read POST/GET request.
An empty passphrase string should enable AUTH_OPEN mode of softAP. This was the behaviour before commit 293e55c. Additionally make the type of checking for empty strings consistent.
added fopen modes for easy reference Source:http://man7.org/linux/man-pages/man3/fopen.3.html
Since the data is stored as Strings internally, these methods do not serve as an optimisation
… for generic device Makefile added to lwip source folder to build and install liblwip_gcc.a
This library has been working well with Arduino for ESP8266 and it deserves to be added here.
Will return -1 like AVR would
fixes fb00e64 error
* New section with ESP8266WiFi library documentation * ESP8266WiFi library documentation 1. Introduction - example, diagnostic, doxygen 2. Station - examples, new doc 3. Soft Access Point - examples, new doc 4. Scan - examples, new doc 5. Client - examples, ref. Arduino, setNoDelay, list of functions 6. Client Secure - examples, loadCertificate, setCertificate, list of functions 7. Server- examples, ref. Arduino, setNoDelay, list of functions 8. UDP - examples, ref. Arduino, Multicast UDP 9. Generic - examples, onEvent, WiFiEventHandler, persistent, mode, list of functions * Fixed numbered list
gettimeofday used to return timestamps which had tv_sec 1000 times smaller than the correct value. s_bootTime is in seconds, so no need to divide it by 1000.
…t cert verification
How to resolve "Board generic (platform esp8266, package esp8266) is unknown" error?
- Added option to control if the ESP should be rebooted on success - Added delay before ESP.restart() is called - Added some comments to the header
Should fix: #2131
it doesn't modify any member variables, should be safe to be const.
Corrected some typos and improved grammar
See: arduino/Arduino#4814 For instance this is used by the USB Host library: felis/USB_Host_Shield_2.0@231fb54
About the simplest change possible, just delete two characters and add one. The PUT(String) convenience method called the full POST method instead of calling the PUT method
Many people have problems with using ESP8266 as WiFi-client due to none of the examples mentioning that you should use WIFI_STA if you only want the ESP8266 to act as a WiFi-client. Many WiFi-devices will randomly try to connect to the ESP8266 if used as STA+AP and complain about not being able to access the Internet or other devices on the network.
it doesn't modify any member variables, should be safe to be const.
Add PIN defines, so the pins can easily be used by external libraries
New FAQ - How to resolve "Board generic (platform esp8266, package esp8266) is unknown" error?
Fixed PUT(String) method, it called POST in error
Use WIFI_STA in WiFiClient-examples
Add Arduino File standard seek call
Corrected a typo and improved grammar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.