Archive for the ‘C#’ Category

16
dic

Great idea!
Follow this link: http://appsumo.com/~_z6T and you can win a paid account for Github!
You need only respond to a simple question! :)

Do you know GitHub.com?

git·hub /’ɡɪtˌhʌb/
GitHub is the best way to collaborate with others. Fork, send pull requests and manage all your public and private git repositories.


Github Free Account

Click here http://appsumo.com/~_z6T and Win!

Enjoy!

FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , , ,

02
ago

Download now!

A simple matrix time clock with current data.

Matrix Time Windows Phone 7 App

Created by an inspiration to my matrix clock on desk!
You can open it and watch clock all the night, it prevent your phone from sleep.
Enjoy.


Matrix Time WP7

FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , ,

09
lug

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)!


arduino google plus notifier

How it works?
A c# tool call and parse this url: https://plus.google.com/u/0/_/n/guc, that returns, as response, a txt file called response.txt that contains these informations:

)]}’ ["on.uc",2,300,"101932929612066440630"]

after “on.uc” we can see number 2. The number of notifications!
Google notification url was found reading html page of google+ login. “On Success“, open url. To show you if there are any notifications.

The tool send on serial port a value only if > 0.

Arduino recognize the string and move the servo +/- 90°. The box will open (showing google logo) or close (hiding all)!

Arduino code:

1
2
  servo.write(0);
  if (val > 0) servo.write(90);


arduino google plus notifier

Very easy to do, 30m of work, but so coool!!!

Making of photos and video (today, only a simulated video because google plus and notification are under test):

arduino google plus notifier
arduino google plus notifier
arduino google plus notifier
arduino google plus notifier
arduino google plus notifier
arduino google plus notifier
arduino google plus notifier

yeeeees!

FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , ,

11
giu

A test with servo and wifi/serial communication.

It’s a C#.net utility that send data over serial port or over wifi and move a servo connected to arduino.


arduino remote servo

Here the demo:



Here automatic version beta:



Totally auto version 1.0:




FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , , , , ,

07
mag

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!


Arduino iphone control


What you need?
Arduino with anything you want
iPhone / iPad / iPod
– A website to host php pages
– An internet connection on pc (Win + Mac)

What you need to know?
– A little bit of electronics
C language
C# language
PHP language
Objective-C language

Good.
In PHP make a stupid page that get in $_REQUEST a command and store it to a file on server!
Three lines of code…

In C# make a web listener that call php page and checks the output. If any condition are verified, send to COM9 the value that you want to get from arduino.

In C from Arduino, in the Loop() read Serial value. If the value respond to your configuration, call LigthUpLed(green) for example!

In Objective-C make an iPhone App with a stupid layout that call in GET your PHP page and send a command!

To make everithink work, run your C# listener app on Windows and from your iPhone send get call to web server!

Now, your nerd app will control arduino!!!

In this example app that i made, i control HIGH or LOW for Four LEDs, a DC Motor, a Piezo Speacker and a Temperature Sensor.

I used resistors, 4 leds, LM32, DC Motor, TIP120, diode, wires, beer.




Here a screenshot (click to enlarge):


Arduino iphone control

Here a video:



Rif: albertopasca.it

enjoy!

FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , , ,

27
mar

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




FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , ,

26
mar

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





As experiment I connected Arduino board to a breadboard with a GREEN LED and a PIEZO SPEACKER in this way:


Arduino Gmail Notifier

Rif: albertopasca.it

I connected the LED to Arduino pin 13 and speacker to arduino pin 12.

The code sended to Arduino ATMEGA328 chip was this:
-It was programmed to read serial port data (sended from server by C# app)-

Arduino CODE (C):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* green led*/
const int ledPin = 13;

/* piezo */
const int beepPin = 12;

/* check gmail mails :D */
int mail = LOW;
int val;

void setup()
{
  /* setup pin iniziale */
  pinMode(ledPin, OUTPUT);      
  pinMode(beepPin, OUTPUT);
 
  Serial.begin(9600);
 
  mail = HIGH;
}

void loop()
{
  /* loop gmail check mails */
  val = Serial.read();
  Serial.println(val, BYTE);

  if (val == 110) { // "n" = 110 in dec from ascii
    mail = HIGH;
  } else if (val == 109) { //109 = "m" in dec from ascii
    mail = LOW;

    /* accendo il led*/
    digitalWrite(ledPin, HIGH);

    /* fischio avviso mail
        tipo fischio di fine
        partita di calcio */

    digitalWrite(beepPin, HIGH);
    delay(500);
    digitalWrite(beepPin, LOW);
    delay(200);
    digitalWrite(beepPin, HIGH);
    delay(500);
    digitalWrite(beepPin, LOW);
    delay(200);
    digitalWrite(beepPin, HIGH);
    delay(3000);

    /* rimetto tutto a posto */
    digitalWrite(beepPin, LOW);
    digitalWrite(ledPin, LOW);
  }  
}

After that Arduino code was uploaded to chip and programmed successfully, I make a C# app that loop on “while true” to check google mails every 10 seconds.
If there is a new incoming mail, it send to serial port (COM9, 9600) a char, “m” for new mail and “n” for NO mail that are interpreted from arduino respectly to 109 and 110 in DEC format.
Arduino CODE recognize the DEC (ascii code, m||n) and executed code relatively condition.
If there was a “m” code, it send an HIGH signal (1) to GREEN LED and an HIGH to speacker (temporized).
Until you don’t read your message, it beeps every 10 seconds!!




To do all of this tricks, you need to create a C# Windows || Console app and run on COM9 listening arduino.

This is C# code (VS2010 – C#4.0):

/* SEND / READ SERIAL PORT COM9 DATA */

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
try {
  SerialPort port = new SerialPort( "COM9", 9600, Parity.None, 8, StopBits.One );
  port.Open();

  string Unreadz = "0";
  while ( true ) {
    Unreadz = CheckMail();
    Console.WriteLine( "Unread Mails: " + Unreadz );

    if ( !Unreadz.Equals( "0" ) ) port.Write( "m" );
    else port.Write( "n" );

    Thread.Sleep( 10000 );
  }
} catch ( Exception ee ) { Console.WriteLine( ee.Message ); }

This ones check mails:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
private string CheckMail() {
    string result = "0";

    try {
      var url = @"https://gmail.google.com/gmail/feed/atom";
      var USER = "your.user.name";
      var PASS = "youRp@ssw0rd";

      var encoded = TextToBase64( USER + ":" + PASS );

      var myWebRequest = HttpWebRequest.Create( url );
      myWebRequest.Method = "POST";
      myWebRequest.ContentLength = 0;
      myWebRequest.Headers.Add( "Authorization", "Basic " + encoded );

      var response = myWebRequest.GetResponse();
      var stream = response.GetResponseStream();

      XmlReader reader = XmlReader.Create( stream );
      while ( reader.Read() )
        if ( reader.NodeType == XmlNodeType.Element )
          if ( reader.Name == "fullcount" ) {
            result = reader.ReadElementContentAsString();
            return result;
          }
    } catch ( Exception ee ) { Console.WriteLine( ee.Message ); }
    return result;
  }
}

…and last one, text convertion:

1
2
3
4
5
public static string TextToBase64( string sAscii ) {
  System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding();
  byte[] bytes = encoding.GetBytes( sAscii );
  return System.Convert.ToBase64String( bytes, 0, bytes.Length );
}

Now, upload code to arduino, press PLAY to C# project… and send you a mail to your gmail address!!!

enjoy beeping!

Rif: albertopasca.it





FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

, , , , , , , , , ,

22
feb

Hi all,
i need to deploy homebrews apps to my WP7 phone, download photo and data, prepare it for next update
…but when i connect, zune show me this error:





zune error message reading

The Zune software can’t access important data on your device“.

Anyone have a solution?




Zune download from here.

Microsoft possible solutions are:

  • Update the Zune software – donenothing
  • Restart the Zune player – donenothing
  • Update the Zune device to the current device software – donenothing
  • Erase the Zune device, and then resync the content – donenothing
  • Reference from Microsoft: http://support.microsoft.com/kb/950446

    …yes, ok… but the working solution????




    albertopasca.it

    FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

    , , , , , , , , ,

    06
    feb

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





    I have a solution for it!!!

    I created a beta version 0.00001 page that permits you to create automatically tiles for your windows phone!!!

    Here a tiny link, useful to open it from phone: http://goo.gl/g9BFS

    It’s a simple web page. You can easily upload a photo, set your phone size and click generate!
    Easy easy easy!





    Now, after loaded an image and generated tiles, you need to center image in internet explorer, open tool bar menu and click “Pin to start” or “Aggiungi a start”, like this:

    Move your created tile where you want and compose your collage!

    Easy to use, cool to show!

    enjoy and send me a feedback!

    Rif: albertopasca.it





    FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

    , , , , , , , , , ,

    28
    gen

    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.

    If you don’t have a unlocked phone with registry editor, read this article.
    After that, read this one to read / write registry in WP7.
    Rif: albertopasca.it

    Here we goooooo:

    Prevent Relock for ChevronWP7 unlocked device

    1
    2
    3
    [HKEY_LOCAL_MACHINE\Software\Microsoft\DeviceReg]
        "PortalUrlProd"=""
        "PortalUrlInt"=""

    OR

    1
    2
    3
    [HKEY_LOCAL_MACHINE\Software\Microsoft\DeviceReg]
    "PortalUrlProd"="127.0.0.1"
    "PortalUrlInt"="127.0.0.1"

    Enable Wifi 11n

    1
    2
    [HKEY_LOCAL_MACHINE\Comm\BCMSDDHD1\Parms]
        "11nModeDisable"=dword:0

    Caller ID issue fix

    1
    2
    [HKEY_CURRENT_USER\ControlPanel\Phone]
    "CallIDMatch"=dword:7

    Live ID Activation Code
    (Usefull on HD2 to bypass boring serial number step)

    1
    2
    [HKEY_LOCAL_MACHINE\Software\Microsoft\GwpCPC]
      "ActivationCode"="R****-H****-I****-*7***-**8**"

    Developer Unlock State

    1
    2
    [HKEY_LOCAL_MACHINE\Comm\Security\LVMod]
        "DeveloperUnlockState"=dword:1





    Unlock Hidden option in ease of access settings

    1
    2
    3
    4
    5
    [HKEY_LOCAL_MACHINE\System\Accessibility]
        "CompactMode"=dword:0
        "TTY"=dword:1
        "telecoil_UI"=dword:1
        "telecoil"=dword:1

    Set AutoData

    1
    2
    3
    4
    5
    [HKEY_LOCAL_MACHINE\System\AutoDataConfig]
    "RunADC"=dword:1
    "ConfigurationStatus"=dword:0
    "Attempt"=dword:0
    "MaxAttemptsAllowed"=dword:3

    Show 3G Toogle

    1
    2
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Connectivity\CellularCPL]
     "Show3GToggle"=dword:1

    Add “never” option to Lockscreen screen time-out

    1
    2
    [HKEY_LOCAL_MACHINE\ControlPanel\Lock]
    "DisableNever"=dword:0

    Rif: albertopasca.it

    Disable System Logs for best performance (usefull on HD2)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Application]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Security]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\System]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-CellularLogPublisher-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-Dtpt-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-FacebookStatusEvent-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-Mtp-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-SharePoint-Notification-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-ShortMsgEtw-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-SNTransports-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-Commsync-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-SyncStatusEvent-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\SYSTEM\EventLog\Channel\Microsoft-WindowsMobile-TelShell-ShellHistoryChannel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-UnifiedStorePublisher-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-RilDrvLogChannel-Channel]
    "DefaultEnable"=dword:00000000
    [HKEY_LOCAL_MACHINE\System\EventLog\Channel\Microsoft-WindowsMobile-ZTraceChannel]
    "DefaultEnable"=dword:00000000

    Cleartype settings

    1
    2
    3
    4
    5
    6
    [HKEY_LOCAL_MACHINE\System\GDI\ClearTypeSettings\0409]
    "ForceOff"=dword:1
    "Enabled"=dword:0
    "Quality"=dword:0
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\0409]
    "ClearTypeText"=dword:1

    System & Home Background color to grey (replace dark theme background color)

    1
    2
    3
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\1]
        "PageBackgroundColor"="#FF818181"
        "SysTrayBackgroundColor"="#FF818181"


    keypad,keyboard background & menu color black (Restart needed to apply)

    1
    2
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\1]
     "ChromeColor" value="#FF000000"

    Famous on WM6 glyph cache entry

    1
    2
    [HKEY_LOCAL_MACHINE\SYSTEM\GDI\GLYPHCACHE\0409]
        "limit"=dword:4000

    Notification & sound volume

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    [HKEY_CURRENT_USER\ControlPanel\Notifications\Vibrate]
    "Enabled"=dword:0
    [HKEY_CURRENT_USER\ControlPanel\Notifications\Message]
    "Enabled"=dword:1
    [HKEY_CURRENT_USER\ControlPanel\Notifications\Led]
    "Enabled"=dword:1
    "TimeOut"=dword:1e
    [HKEY_CURRENT_USER\ControlPanel\Notifications\Sounds]
    "Enabled"=dword:1
    "Repeat"=dword:0
    "Wave"="Alarm1"
    [HKEY_CURRENT_USER\ControlPanel\Notifications\Default]
    "LedRefCount"=dword:0
    [HKEY_LOCAL_MACHINE\ControlPanel\Volume]
    [HKEY_CURRENT_USER\ControlPanel\Volume]
    "Key"=dword:2
    "Screen"=dword:2
    "Mute"=dword:7
    "Volume"=dword:C666C666
    "MaxSystemUIVolume"=dword:1E
    "MaxInCallUIVolume"=dword:A
    "MaxdBAtten"=dword:2D
    "MinInCallVolume"=dword:1111

    Unlock Hidden option in ease of access settings

    1
    2
    3
    4
    5
    [HKEY_LOCAL_MACHINE\System\Accessibility]
        "CompactMode"=dword:0
        "TTY"=dword:1
        "telecoil_UI"=dword:1
        "telecoil"=dword:1





    Change default IE search engine
    BING

    1
    2
    3
    4
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes]
        "DefaultScope"="Bing"
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Bing]
    "URL"="http://m.bing.com/search/search.aspx?mid=8015&LC=en-us"

    GOOGLE

    1
    2
    3
    4
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes]
        "DefaultScope"="Google"
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Google]
    "URL"="http://www.google.com/m?hl=en&gl=us&client=ms-hms-tmobile-us&q={searchTerms}"

    YAHOO

    1
    2
    3
    4
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes]
        "DefaultScope"="Yahoo"
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchScopes\Yahoo]
    "URL"="http://de.search.yahoo.com/search?p={searchTerms}"

    Add url to IE new Tabs

    1
    2
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\AboutURLs]
    "tabs"="http://www.albertopasca.it"

    Rif: albertopasca.it

    ACCENT COLOR NAMES

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisp layName\0409]
    "0"="Green" ;
    "1"="Red" ;
    "2"="Blue" ;
    "3"="Orange" ;
    "5"="Pink" ;
    "6"="Brown" ;
    "7"="Lime" ;
    "8"="Teal" ;
    "9"="Purple" ;
    "10"="Magenta" ;
    "11" = "Light blue";
    "12" = "Dark blue";


    LIGHT

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\0\Accents]
    "0"=dword:FF339933
    "1"=dword:FFE51400
    "2"=dword:FF1BA1E2
    "3"=dword:FFF09609
    "5"=dword:FFE671B8
    "6"=dword:FFA05000
    "7"=dword:FF8CBF26
    "8"=dword:FF00ABA9
    "9"=dword:FFA200FF
    "10"=dword:FFFF0097

    DARK

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\1\Accents]
    "0"=dword:FF339933
    "1"=dword:FFE51400
    "2"=dword:FF1BA1E2
    "3"=dword:FFF09609
    "5"=dword:FFE671B8
    "6"=dword:FFA05000
    "7"=dword:FF8CBF26
    "8"=dword:FF00ABA9
    "9"=dword:FFA200FF
    "10"=dword:FFFF0097

    ADD MORE COLORS

    1
    2
    3
    4
    5
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisplayName\0409]
    "13"="Grey"
    "14"="Light grey"
    "15"="Black"
    "16"="White"
    1
    2
    3
    4
    5
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisplayName\0c0a]
    "13"="Gris"
    "14"="Gris claro"
    "15"="Negro"
    "16"="Blanco"
    1
    2
    3
    4
    5
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\0\Accents]
    "13"=dword:FF808080
    "14"=dword:FFC0C0C0
    "15"=dword:FF000000
    "16"=dword:FFFFFFFF
    1
    2
    3
    4
    5
    [HKEY_LOCAL_MACHINE\ControlPanel\Themes\1\Accents]
    "13"=dword:FF808080
    "14"=dword:FFC0C0C0
    "15"=dword:FF000000
    "16"=dword:FFFFFFFF


    ADD MORE THAN 10 UNSIGNED APPS

    1
    2
    [HKEY_LOCAL_MACHINE\Software\Microsoft\DeviceReg\Install]
        "MaxUnsignedApp"=dword:7fffffff ; Allow max number of unsignd apps

    VARIOUS

    1
    2
    [HKEY_LOCAL_MACHINE\Software\Qualcomm\QosLib]
      "Enabled"=dword:0
    1
    2
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Camera\Settings]
      "ScreenOrientation"=dword:0
    1
    2
    [HKEY_LOCAL_MACHINE\Software\Qualcomm\RIL\Options]
      "ExtendedSSInfo"=dword:0
    1
    2
    3
    4
    5
    6
    [HKEY_LOCAL_MACHINE\Software\Microsoft\Connectivity\CellularCPL]
      "MakeDataConnectionExclusive"=dword:1
      "Show3GToggle"=dword:1
      "AutoNetwork"=dword:1
      "Roaming"=dword:0
      "CellDataOn"=dword:1
    1
    2
    3
    [HKEY_CURRENT_USER\ControlPanel\PhoneNetSelMode]
      "AlwaysShowGSMOperationModes"=dword:1
      "Option"=dword:0
    1
    2
    [HKEY_LOCAL_MACHINE\Software\HTC\Proximity]
      "ProximityDetectStatus"=dword:0

    NEVER LOCK SCREEN

    1
    2
        [HKEY_LOCAL_MACHINE\ControlPanel\Lock]
        "DisableNever"=dword:0

    Enjoy as usual and be carefully!!!

    Snippet from the web.

    Rif: albertopasca.it





    FacebookTwitterDeliciousLinkedInGoogle BookmarksNetlogGoogle GmailMySpaceGoogle ReaderShare

    , , , , , , , , , , , ,

    Switch to our mobile site