Arduino LED Matrix Control Part II

IMG_0105
IMG_0106
IMG_0108
IMG_0107

With the Arduino app you can control a led matrix over wifi on your iphone.

Later you can save your “icon” and load older ones.

Sourcecode is still a bit clunky. But it Works :)

- (void)drawRect:(CGRect)rect {
 
	CGContextRef context = UIGraphicsGetCurrentContext();
	if(isOn) {
		[color setFill];
	} else {
		[[UIColor grayColor] setFill];
	}
 
	CGContextSetLineWidth(context, 1.0);
 
	CGContextAddEllipseInRect(context, rect);
	CGContextDrawPath(context, kCGPathFillStroke);
}

Download Sourcecode

Related posts:

  1. Arduino + Wishield + LED Matrix = a lot of fun! socketapp.c extern char buffer[20]; static int handle_connection(struct socket_app_state *s)...
  2. Arduino LED Matrix Controlling by iPhone Today i ported the mac ArduinoControll app to my iPhone....
  3. arduino motoshield soldering action After about 2 houres of soldering everything works well...
  4. Arduino iphone Webinterface + Alcohol Sensor Erreichte Ziele Arduino über Webinterface gesteuert (LED an/aus) Alcohol...

Ähnliche Artikel bereitgestellt von Yet Another Related Posts Plugin.

1 Comment

JohnJuni 17th, 2010 at 10:46 pm

Great creative use for a WiShield in combination with the iPhone!
Be creative and you will stay young!

-John

Leave a comment

Your comment