Sha256: 16151228a84a6f244ff69c365219cc6fd97b90cc1c41c3e486855cf6ddcde3a7

Contents?: true

Size: 274 Bytes

Versions: 20

Compression:

Stored size: 274 Bytes

Contents

#include <WProgram.h>

void loop();
void setup();
int main();

void setup() {
	pinMode(13, OUTPUT);
}

int main() {
	init();
	setup();
	for( ;; ) { loop(); }
	return 0;
}
    
void loop() {
	digitalWrite( 13, HIGH );
	delay( 500 );
	digitalWrite( 13, LOW );
	delay( 500 );
}

Version data entries

20 entries across 20 versions & 4 rubygems

Version Path
neo_rad-0.4.0 test/hello_world_test/hello_world.cpp
atduskgreg-rad-0.2.5 bin/hello_world_test/hello_world.cpp
atduskgreg-rad-0.3.0.1 test/hello_world_test/hello_world.cpp
atduskgreg-rad-0.3.1 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.1.1 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.1 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.2 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.3 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.4 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.5 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.6 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.7 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.8 test/hello_world_test/hello_world.cpp
madrona-rad-0.3.9 test/hello_world_test/hello_world.cpp
madrona-rad-0.4.0 test/hello_world_test/hello_world.cpp
madrona-rad-0.5.0 test/hello_world_test/hello_world.cpp
madrona-rad-0.4.3 test/hello_world_test/hello_world.cpp
madrona-rad-0.4.2 test/hello_world_test/hello_world.cpp
madrona-rad-0.4.1 test/hello_world_test/hello_world.cpp
rad-0.3.0 test/hello_world_test/hello_world.cpp