gb.getDefaultName

From Gamebuino Wiki
Revision as of 2014-05-18T17:07:18 by Rodot (talk | contribs) (Example: added name in begin())
Jump to: navigation, search


Description

Gets the default user name set using the program SETTINGS.HEX. The default name is set in the Gamebuino's memory so it's the same in every game.

Syntax

gb.getDefaultName(name);

Parameters

  • name (char*): a 10 char long string which will receive the default user name.

Returns

none

Example

#include <SPI.h>
#include <Gamebuino.h>
Gamebuino gb;

char name[11];

void setup(){
  gb.begin(F("Name example"));
  gb.getDefaultName(name);
}

void loop(){
  if(gb.update()){
    gb.display.print("Hello ");
    gb.display.print(name);
  }
}

See also