/ShpGck

A library for TCPGecko using C# (.NET Framework)

Primary LanguageC#GNU General Public License v2.0GPL-2.0

ShpGck

A library for BullyWiiPlaza's TCPGecko using .NET
Code based on TCP Gecko dotNet, pyGecko

Example

using System;
using ShpGck.CafeCode;

namespace ShpGck.Example.CodeSender
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("Wii U's IPv4> ");
            string ip_addr = Console.ReadLine();

            GckGeckoU gck = new GckGeckoU();
            Console.WriteLine("Connecting tcpgecko server...");
            gck.Connect(ip_addr);
            Console.WriteLine("Connected!");

            Console.WriteLine("Sending codes...");
            gck.SendCodes(
                new CCWriteMemory(0x1004F71C, 0, ValueSize.UInt8) //Home Button Menu Anywhere [Macopride64])
                );
            Console.WriteLine("Sent!");
			Console.WriteLine("You can use the Home Menu in anywhere."); 

            Console.ReadKey(false);
        }
    }
}