Skip to content

An easier helloworld for WiiU homebrew; useful for people that want to start with wii u homebrew. Mostly based on dimok helloworld :P

Notifications You must be signed in to change notification settings

pwsincd/WiiU-HelloWorld-Easy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 

Repository files navigation

WiiU-HelloWorld-Easy

The Easiest Wii U Homebrew Example™

A very easy example for people that want to start with wii u homebrew

lib_easy functions

Init functions

uInit();
Init Screen and Gamepad Input

Screen functions

ucls();
Clear screen

uprintf(format, ...);
Same as printf()

Input functions

updatePressedButtons();
Updates buttons state

isPressed(int button);
Returns 1 if button is pressed an 0 if button isn't pressed example: "if(isPressed(VPAD_BUTTON_HOME)) doSomething();"
Other than VPAD_BUTTON_HOME, possible values are:
VPAD_BUTTON_A, VPAD_BUTTON_B, VPAD_BUTTON_X, VPAD_BUTTON_Y, VPAD_BUTTON_LEFT, VPAD_BUTTON_RIGHT,
VPAD_BUTTON_UP, VPAD_BUTTON_DOWN, VPAD_BUTTON_ZL, VPAD_BUTTON_ZR, VPAD_BUTTON_L, VPAD_BUTTON_R,
VPAD_BUTTON_PLUS, VPAD_BUTTON_MINUS, VPAD_BUTTON_HOME, VPAD_BUTTON_SYNC, VPAD_BUTTON_STICK_R,
VPAD_BUTTON_STICK_L, VPAD_BUTTON_TV

Deinit functions

uDeInit();
Deinit Screen and Gamepad Input

About

An easier helloworld for WiiU homebrew; useful for people that want to start with wii u homebrew. Mostly based on dimok helloworld :P

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 93.7%
  • Makefile 4.2%
  • Objective-C 1.1%
  • C++ 1.0%