News
Dec2021
EDM experiments
Using EDM with CNC path style to cut steel
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.