mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-01 03:47:23 +03:00
Merge 1.6.1 into esp8266
* commit 'b8b2869753d488bfd203615637e1de3912589a92': (68 commits) Updated revisions.txt Fixed wrong path in successful message arduino-core: restored debug info in class files Fixed NPE in case of missing boardData Added missing translations Added windows drivers Added warning for uncertified boards Update revision.txt update revisions.txt SoftwareSerial: match bool API with HardwareSerial Fix to save as to parent folder is needed by all OSs, not just Mac Update revision.txt MacOSX: previous better IDE was missing some pieces. Added MacOSX: better IDE Updated revisions.txt NEW button now behaves as clicking File -> New menu entry. Fixes #2685 Windows: bundled JRE updated to 8u31 build.xml now uses unzip target Added .getParentFile() to saveas for mac. This prevents saving into the sketch itself Compound edits weren't part of the undo/redo dance An undoable action marks the sketh as modified ...
This commit is contained in:
@ -26,8 +26,8 @@
|
||||
#include <YunServer.h>
|
||||
#include <YunClient.h>
|
||||
|
||||
// Listen on default port 5555, the webserver on the Yún
|
||||
// will forward there all the HTTP requests for us.
|
||||
// Listen to the default port 5555, the Yún webserver
|
||||
// will forward there all the HTTP requests you send
|
||||
YunServer server;
|
||||
|
||||
void setup() {
|
||||
|
@ -15,7 +15,7 @@
|
||||
'~' followed by '1' -> Set the UART speed to 115200 baud
|
||||
'~' followed by '2' -> Set the UART speed to 250000 baud
|
||||
'~' followed by '3' -> Set the UART speed to 500000 baud
|
||||
'~' followeb by '~' -> Sends the bridge's shutdown command to
|
||||
'~' followed by '~' -> Sends the bridge's shutdown command to
|
||||
obtain the console.
|
||||
|
||||
The circuit:
|
||||
|
@ -160,7 +160,7 @@ int YunClient::connect(const char *host, uint16_t port) {
|
||||
if (connected())
|
||||
return 1;
|
||||
|
||||
opened = false;
|
||||
stop();
|
||||
handle = 0;
|
||||
return 0;
|
||||
}
|
||||
|
@ -24,6 +24,8 @@ public:
|
||||
virtual void stop();
|
||||
virtual uint8_t connected();
|
||||
virtual operator bool();
|
||||
virtual bool operator==(const bool value) { return bool() == value; }
|
||||
virtual bool operator!=(const bool value) { return bool() != value; }
|
||||
virtual bool operator==(const EthernetClient&);
|
||||
virtual bool operator!=(const EthernetClient& rhs) { return !this->operator==(rhs); };
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
name=LiquidCrystal
|
||||
version=1.0
|
||||
author=
|
||||
author=Arduino, Adafruit
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows communication with alphanumerical liquid crystal displays (LCDs). For all Arduino boards.
|
||||
paragraph=This library allows an Arduino board to control LiquidCrystal displays (LCDs) based on the Hitachi HD44780 (or a compatible) chipset, which is found on most text-based LCDs. The library works with in either 4 or 8 bit mode (i.e. using 4 or 8 data lines in addition to the rs, enable, and, optionally, the rw control lines).
|
||||
|
@ -1,7 +1,7 @@
|
||||
name=SD
|
||||
version=1.0
|
||||
author=
|
||||
maintainer=
|
||||
author=Arduino, SparkFun
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Enables reading and writing on SD cards. For all Arduino boards.
|
||||
paragraph=Once an SD memory card is connected to the SPI interfare of the Arduino board you are enabled to create files and read/write on them. You can also move through directories on the SD card.
|
||||
category=Data Storage
|
||||
|
@ -1,7 +1,7 @@
|
||||
name=Stepper
|
||||
version=1.0
|
||||
author=
|
||||
maintainer=
|
||||
author=Arduino
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows Arduino boards to control a variety of stepper motors. For all Arduino boards.
|
||||
paragraph=This library allows you to control unipolar or bipolar stepper motors. To use it you will need a stepper motor, and the appropriate hardware to control it.
|
||||
category=Device Control
|
||||
|
@ -1,7 +1,7 @@
|
||||
name=TFT
|
||||
version=1.0
|
||||
author=
|
||||
maintainer=
|
||||
author=Arduino, Adafruit
|
||||
maintainer=Arduino <info@arduino.cc>
|
||||
sentence=Allows drawing text, images, and shapes on the Arduino TFT graphical display. For all Arduino boards.
|
||||
paragraph=This library is compatible with most of the TFT display based on the ST7735 chipset
|
||||
category=Display
|
||||
|
Reference in New Issue
Block a user