News
Oct 2015
Arduino-Cosa on Atom Editor
Atomino
Its now possible to edit, compile and upload your Arduino-Cosa sketch from Atom-Editor.
Its an experimental project and will work on linux machine only (for now).
the Atom Editor: https://atom.io/
Atomino package: https://atom.io/packages/atomino
The Arduino-Cosa project: http://cosa-arduino.blogspot.pt/
2014 Oct
C++ lazy stream style
Arduino stream flow
when using Arduino I get a bit tired of writing .print('s and .println('s. I missed the old C++ stream operator... well a couple minutes solved that. here's the code:
inline Stream& operator<<(Stream& s,int v) {s.print(v);return s;}
inline Stream& operator<<(Stream& s,const char* v) {s.print(v);return s;}
//.. add some more members as needed
after this we can go in old stream lazy c++ stream style:
Serial<<"Counter: "<<cnt<<" units\n\r";
instead of the boring:
Serial.print("Counter: ");
Serial.print(cnt);
Serial.println(" units\n\r");
happy coding
2014 Apr
Raspberry-PI as AVR programmer
Programming AVR's @ 4MHz SPI

2014 Apr
Open soruce release
VirtualPins

We have published ongoing work at https://github.com/neu-rah/Arduino-VirtualPins
Its now possible to test virtual pins.