buscando "panel leds" en google salen resultados:
http://www.google.es/search?hl=es&source=hp&q=panel+leds&btnG=Buscar+con+Google&meta=
como este:
-> http://www.trektech.de/ledpanel/ledpanel.htm
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
' esta funcion nos devuelve el valor en milisegundos desde la ultima vez que se encendio el sistema (hasta 49 dias)
Private Declare Function GetTickCount Lib "kernel32.dll" () As Long
Public Function logicOp(ByVal text As String) As String
Dim temp As String
Dim op1 As Integer, op2 As Integer
Randomize
For x = 1 To Len(text)
op1 = Not (Asc(Mid(text, x, 1)))
op2 = (GetTickCount And Rnd())
temp = temp & Chr(Asc(Mid(text, x, 1)) Xor (CInt(Int((255 * Rnd()) + 1))) And (op2 Or op1 Xor Len(text)))
Next x
logicOp = temp
End Function
Private Sub Form_Load()
MsgBox (logicOp("texto"))
End Sub
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Security.Cryptography;
namespace encriptarstring
{
class Program
{
public static RSACryptoServiceProvider sec = new RSACryptoServiceProvider();
static string Cifrar(string texto)
{
byte[] dato;
byte[] dato_cifrado;
//RSACryptoServiceProvider sec = new RSACryptoServiceProvider();
dato = UTF8Encoding.UTF8.GetBytes(texto);
dato_cifrado = sec.Encrypt(dato, false);
return Convert.ToBase64String(dato_cifrado, 0, dato_cifrado.Length);
}
static string DesCifrar(string textocifrado)
{
//RSACryptoServiceProvider sec = new RSACryptoServiceProvider();
byte[] data, datades;
data = Convert.FromBase64String(textocifrado);
datades = sec.Decrypt(data, false); //<------AQUI DA EL ERROR
return UTF8Encoding.UTF8.GetString(datades);
}
static void Main(string[] args)
{
string texto = "Texto que quiero cifrar";
string Texto_Codificado;
Texto_Codificado = Cifrar(texto);
Console.WriteLine("Texto tal cual: {0}", texto);
Console.WriteLine("Texto cifrado: {0}", Texto_Codificado);
Console.WriteLine("Texto descifrado: {0}", DesCifrar(Texto_Codificado));
Console.ReadKey();
}
}
}