lfdebrux / rogue-code

Automatically exported from code.google.com/p/rogue-code
0 stars 0 forks source link

Update for Arduino 1.0 #6

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The current version will not compile using the Arduino 1.0 beta release. 

Modifying Tone.cpp as follows will fix this problem:
#if ARDUINO > 22
#include "Arduino.h"
#else
#include <wiring.h>
#include <pins_arduino.h>
#endif

Original issue reported on code.google.com by memargolis@gmail.com on 19 Jul 2011 at 12:54

GoogleCodeExporter commented 8 years ago
I have Arduino 1.0.2 and the library V0006 still has the issue. When the fixed 
library will be available for download. 

Original comment by isra...@gmail.com on 1 Mar 2013 at 2:42