2baf577437
Added WebClientRepeating example
2012-04-19 15:02:21 -04:00
44966b81f4
Removed Serial.begin() inside examples where not needed
2012-04-11 13:08:43 +02:00
8e50ecbb6c
updated URLs in LiquidCrystal examples
2012-04-11 12:56:31 +02:00
6f93d3fc17
Updated all comments for while (!Serial) additions to serial-based examples
2012-04-09 10:48:40 -04:00
47c46c4f25
Fix for CLOSE_WAIT Bug
...
Fir for an EthernetClient bug, as per the following thread http://forum.freetronics.com/viewtopic.php?t=176
Kudos to mr-russ for finding a fix.
2012-04-05 22:13:49 +02:00
202bb102a0
Updated all serial in setup examples with a note about the serial check
2012-04-02 11:11:46 -04:00
a631e4f834
Added Serial port check to all examples using Serial statements in the setup
2012-04-02 09:07:58 -04:00
a0f1f1a930
Merge branch 'master' of github.com:arduino/Arduino into LUFA_bootloader
2012-03-24 09:30:17 -04:00
19f513b943
Updating comments in SoftwareSerial example.
2012-03-20 16:24:48 -04:00
87eaf2d0c5
Updated comments in softwareSerial example
2012-03-20 14:48:24 -04:00
da09e0c867
Updated Ethernet WebServer example to give more diagnostic info
2012-03-20 10:37:15 -04:00
c9ded42197
Updated PachubeClientString and PachubeClient examples for Ethernet
2012-03-16 10:48:18 -04:00
d169114205
Merge branch 'master' of github.com:arduino/Arduino into LUFA_bootloader
2012-03-14 15:40:29 -04:00
7f11df115d
Updated ChatServer
2012-03-12 15:30:18 -04:00
8a35793794
Merge branch 'master' of github.com:arduino/Arduino into LUFA_bootloader
...
Conflicts:
.gitignore
2012-03-03 13:28:39 -05:00
9f3438c189
Adding Ethernet.maintain() to update DHCP leases (Peter Magnusson)
...
returns:
0: nothing happened
1: renew failed
2: renew success
3: rebind fail
4: rebind success
http://code.google.com/p/arduino/issues/detail?id=716
2012-03-02 18:51:48 -05:00
f415edfc3b
upated PachubeClientString to fix interval bug
2012-03-02 17:21:12 -05:00
8ef8be6ccd
Adjusted interval bug in TwitterClient
2012-03-02 17:20:09 -05:00
59f68ebd8c
Updated pachubeClientStirng to fix posting interval bug
2012-03-02 17:17:15 -05:00
366a490973
Updated TwitterClient example to fix timing bug
2012-03-02 13:14:07 -05:00
d10b5da4f6
Merge branch 'master' of github.com:arduino/Arduino into LUFA_bootloader
2012-02-27 21:21:34 -05:00
9f755d159a
Updated Ethernet PachubeClient and PachubeClientString examples to use Pachube API 2.0
2012-02-27 11:51:13 -05:00
65ddc6c43b
Merge branch 'master' of github.com:arduino/Arduino into LUFA_bootloader
2012-02-22 15:19:32 -05:00
2f29f898de
Adding ability to send repeated starts in Wire library.
...
This adds an additional (boolean) parameter to both endTransmission() and requestFrom(), which specifies whether or not to send a stop condition after the corresponding transmission. This defaults to true, as in the previous behavior of the library.
http://code.google.com/p/arduino/issues/detail?id=663
2012-02-18 20:05:11 -05:00
561cd7054d
Fixing (maybe) a bug involving multiple received UDP packets.
...
http://code.google.com/p/arduino/issues/detail?id=669
2012-02-14 16:41:22 -08:00
5eb7ad154b
Merge branch 'master' of github.com:arduino/Arduino into LUFA_bootloader
2012-02-03 19:54:33 -05:00
3dfc2c6311
Serial.print() -> Serial.write() in SD SerialPrint_P function.
...
http://code.google.com/p/arduino/issues/detail?id=759
2012-02-03 17:32:54 -05:00
2622ad5580
Merge branch 'master' of github.com:arduino/Arduino into new-extension
2012-01-10 12:02:27 -05:00
b7c54b79d7
Fine tuned libraries search. Reintroduced ./libraries folder for shipped
...
platform independent libraries.
2012-01-09 18:20:55 +01:00
57b8713cab
Moved libraries folder inside platform folder. Now libraries and examples are searched per board/platform
2012-01-04 15:14:51 +01:00
cce4ef7c69
Fixing warnings (unsigned comparisons to 0). (maniacbug)
2012-01-02 12:57:23 -05:00
531c3bfe28
Merge branch 'master' of github.com:arduino/32U4 into new-extension
2011-12-18 12:40:56 -05:00
64c8b89b5f
Fixing ethernet library on Leonardo (correcting SS pin for 32U4).
2011-12-15 15:33:47 -05:00
b8fbffeac4
Fixing DHCP hostname (peter).
...
http://code.google.com/p/arduino/issues/detail?id=742
2011-12-14 00:55:10 -05:00
7c90d9d8b5
Changing recv() to return signed int16 (in Ethernet socket.cpp). S. Wallace
...
http://code.google.com/p/arduino/issues/detail?id=516
2011-12-08 17:29:28 -05:00
597da2e45d
Ethernet library fix for avr-gcc v4.5.1 (and maybe others). (SurferTim)
...
This is a change in a few lines for combining two 8-bit values into a 16-bit one. For some reason, the old way doesn't seem to work properly with certain gcc versions.
http://code.google.com/p/arduino/issues/detail?id=605
2011-12-08 16:50:59 -05:00
6a6ed3d10a
Adding overloads for other integer types in Wire.write(). (Paul Stoffregen)
...
http://code.google.com/p/arduino/issues/detail?id=527
2011-12-02 16:43:41 -05:00
9af71ad6e8
Moved Mouse and Keyboard examples for Leonardo into the core examples folder
2011-11-28 15:03:06 -05:00
8ccb3bdeb3
Moved Keyboard examples to an examples folder inside the Keyboard library folder
2011-11-23 14:35:18 -05:00
76ed870de8
Merge branch 'new-extension' of github.com:arduino/Arduino into diskloader_reboot
2011-10-31 21:42:09 -04:00
726acf77de
Fixing SD ls function (Paul Stoffregen).
...
http://code.google.com/p/arduino/issues/detail?id=700
2011-10-29 17:31:04 -04:00
a6a59f1783
Revert "Merge branch 'master' of github.com:arduino/Arduino into diskloader_reboot"
...
This reverts commit df9835efaf
, reversing
changes made to ec45af8bfa
.
Conflicts:
hardware/arduino/variants/mega/pins_arduino.h
libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino
2011-10-27 11:45:13 -04:00
f2bd8a5394
Merge branch 'new-extension' of github.com:arduino/Arduino into diskloader_reboot
...
Conflicts:
hardware/arduino/variants/mega/pins_arduino.h
libraries/Ethernet/examples/PachubeClient/PachubeClient.ino
libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino
2011-10-27 11:41:02 -04:00
df9835efaf
Merge branch 'master' of github.com:arduino/Arduino into diskloader_reboot
...
Conflicts:
app/src/processing/app/Editor.java
app/src/processing/app/Sketch.java
build/shared/examples/4.Communication/SerialCallResponse/SerialCallResponse.pde
build/shared/lib/theme/theme.txt
hardware/arduino/cores/arduino/HardwareSerial.h
hardware/arduino/cores/arduino/Print.cpp
hardware/arduino/cores/arduino/WString.h
hardware/arduino/variants/mega/pins_arduino.h
libraries/Ethernet/examples/PachubeClient/PachubeClient.ino
libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino
libraries/Firmata/examples/EchoString/EchoString.ino
libraries/SD/File.cpp
libraries/SoftwareSerial/SoftwareSerial.cpp
libraries/SoftwareSerial/SoftwareSerial.h
libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino
libraries/SoftwareSerial/keywords.txt
2011-10-27 09:32:27 -04:00
d16eeb0af3
Modified Pachube examples to use manual Ethernet config if DCHP fails.
2011-10-26 13:22:30 -04:00
e1dbe688e9
NewSoftSerial -> SoftwareSerial in keywords.txt.
...
http://code.google.com/p/arduino/issues/detail?id=640
2011-10-24 16:53:41 -04:00
dc21e1da8a
Added examples for the Keyboard library of the Leonardo
2011-10-24 10:55:44 -04:00
f684321850
Fixing bug in LiquidCrystal::setCursor() for row == numrows.
...
http://code.google.com/p/arduino/issues/detail?id=671
2011-10-10 12:35:36 -04:00
9296f1db31
Fixing bug in Ethernet (recv() in socket.cpp). (Paul Stoffregen)
...
http://code.google.com/p/arduino/issues/detail?id=670
2011-10-10 11:49:50 -04:00
ca671fdc05
Fixing more warnings (Paul Stoffregen).
2011-10-10 11:28:44 -04:00