Hi all,
simple way to control the speed of a DC Motor!
Continue reading “[Arduino] Speed control with DC Motor and Pot”
notes from a developer, tutorials, how-to, ideas
Hi all,
simple way to control the speed of a DC Motor!
Continue reading “[Arduino] Speed control with DC Motor and Pot”
For personal test, i made a simple app that connect to COM port and GET/RECEIVE data from Arduino connected.
You can download from here: Arduino_Connector_1.0
Enjoy tech!
Rif: albertopasca.it
Hi all,
as my first experiment, an arduino connected to COM9 to recognize incoming mails from google mail (gmail)!!
Hi all,
this is the first post about Arduino!
Arduino is an open-source electronics prototyping platform based on flexible, easy-to-use hardware and software. It’s intended for artists, designers, hobbyists, and anyone interested in creating interactive objects or environments.
It’s learning time… stay tuned for Videos and Tutorials!!
Today a little tutorial to find a word in a big ordered text file using binary search in objective-c.
Hi all,
do tou like Windows Phone 7? Do you want to customize start menu adding images to your tiles???
Like these screenshots?
Hi all,
a large collection of tricks that you made with registry edit in your Windows Phone 7.
These are all hidden features, but simply editable from the registry directly from phone.
Today a phone code to enable in your apps list a new tool, MFG!
Get current and formatted time from your simulator or device!
[code lang=”java” autolinks=”false” collapse=”false” firstline=”1″ gutter=”true” htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false”]- (NSString*) getDateTime {
NSDateFormatter *formatter;
NSString *dateString;
formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd-MM-yyyy HH:mm"];
dateString = [formatter stringFromDate:[NSDate date]];
[formatter release];
NSLog(@"Current data: %@", dateString);
return dateString;
}[/code]
eof
Rif: albertopasca.it