Skip to content
/ ShpGck Public

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

License

Notifications You must be signed in to change notification settings

kzpns/ShpGck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
        }
    }
}

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages