[Arduino] IR38DM and TV Remote Control

Great!
A TV Remote Control that controls my LED or something else…!!!

Ref: albertopasca.it

 

[Arduino] COM port connector 1.0

For personal test, i made a simple app that connect to COM port and GET/RECEIVE data from Arduino connected.

Arduino Connector 1.0

Small app, easy to use.

You can download from here: Arduino_Connector_1.0

Enjoy tech!

Rif: albertopasca.it

 

[Arduino] Mail Notifier with C#

Hi all,
as my first experiment, an arduino connected to COM9 to recognize incoming mails from google mail (gmail)!!

Read More

 

[Arduino] Unboxing

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.


Arduino Uno
www.arduino.cc

It’s learning time… stay tuned for Videos and Tutorials!!

 

[Objective-C] Fast String Binary Search

Today a little tutorial to find a word in a big ordered text file using binary search in objective-c.

Read More

 

[WP7] Cool tiles generator

Hi all,
do tou like Windows Phone 7? Do you want to customize start menu adding images to your tiles???
Like these screenshots?

Read More

 

ATM – Milano

ATM Milano – Pensilina d’attesa, originally uploaded by Alberto Pasca.

Quindi? C’è qualche stagista che ha fatto il danno??? 🙂

 

[WP7] Registry keys tips and tricks

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.

Read More

 

[WP7] Enable hidden MFG menu

Today a phone code to enable in your apps list a new tool, MFG!

Read More

 

[Objective-C] Get current Date and Time

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