Arduino のスケッチはC(C++)に変換されてからgccでコンパイルされます.Makefile をみると変換方法がわかるのですが,ちゃんとしたトランスレータが用意されているわけではなく,要するにヘッダ部分と関数 main の定義をくっつけているだけなんですね.ちょっとびっくりしました. applet_files: $(TARGET).pde # Here is the "preprocessing". # It creates a .cpp file based with the same name as the .pde file. # On top of the new .cpp file comes the WProgram.h header. # At the end there is a generic main() function attached. # Then th