Well, starting with new tutorials! Unity3D and C# development.
Today we learn an intelligent way to animate a character based on the input Axis(Horizontal / Vertical) starting from a single image, called “sprite“.
Well, starting with new tutorials! Unity3D and C# development.
Today we learn an intelligent way to animate a character based on the input Axis(Horizontal / Vertical) starting from a single image, called “sprite“.
First “Hello World” project just to learn Unity3D basics.
A very ugly clone of GravityGuy for iOS, maded in Unity3D using C#. Just to learn something new!
A very easy project this morning!
A robotic – automatic notifier for google plus with an arduino, a servo motor and an… icecream box! (plus.google.com)!
Hi all!!
Today i show how is possible to connect iPhone to Arduino without any Wifi or Ethernet shields!
Here the app that controls 4 leds (green yellow, red and orange), a DC motor with a fan, a piezo speacker and the room temperature with LM32 sensor!
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,
with these lines of code you can use Apple iOS Mail system to send an email with an attachment!
It’s so easy that i don’t know this method!
How to call Internet Explorer to open a custom url!
[code lang=”csharp” autolinks=”false” collapse=”false” firstline=”1″ gutter=”true” htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false”]WebBrowserTask ie = new WebBrowserTask();
ie.URL = "http://www.albertopasca.it";
ie.Show();[/code]
This is my first post about Windows Phone 7 SDK!
It’s a C# snipplet to make call from your phone using PhoneCallTask!
[code lang=”csharp” autolinks=”false” collapse=”false” firstline=”1″ gutter=”true” htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false”]
PhoneCallTask pct = new PhoneCallTask();
pct.DisplayName = "Alberto Pasca";
pct.PhoneNumber = "+39328111111";
pct.Show();
[/code]
How to send a custom email from Windows Phone 7 with default configured client?
[code lang=”csharp” autolinks=”false” collapse=”false” firstline=”1″ gutter=”true” htmlscript=”false” light=”false” padlinenumbers=”false” smarttabs=”true” tabsize=”4″ toolbar=”false”]EmailComposeTask mail = new EmailComposeTask();
mail.To = "info@albertopasca.it";
mail.Subject = "info from app";
mail.Body = "message…";
mail.Show();[/code]