Difference between revisions of "Gb.getDefaultName"

From Gamebuino Wiki
Jump to: navigation, search
(Created page with "{{DISPLAYTITLE:gb.getDefaultName}} __NOTOC__ = Description = Gets the default user name set using the program SETTINGS.HEX. The default name is set in the Gamebuino's memory s...")
 
m
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:gb.getDefaultName}}
+
{{lowercase}}
 
__NOTOC__
 
__NOTOC__
= Description =
+
== 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.
 
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 =
+
== Syntax ==
 
<pre>gb.getDefaultName(name);</pre>
 
<pre>gb.getDefaultName(name);</pre>
  
= Parameters =
+
== Parameters ==
 
* name (''char*''): a 10 char long string which will receive the default user name.
 
* name (''char*''): a 10 char long string which will receive the default user name.
  
= Returns =
+
== Returns ==
 
none
 
none
  
= Example =
+
== Example ==
<pre>
+
<gistit>https://github.com/Rodot/Gamebuino/blob/master/libraries/Gamebuino/examples/5.Reference/core/getDefaultName/getDefaultName.ino</gistit>
#include <SPI.h>
 
#include <Gamebuino.h>
 
Gamebuino gb;
 
  
char name[11];
+
== See also ==
 
 
void setup(){
 
  gb.begin();
 
  gb.getDefaultName(name);
 
}
 
 
 
void loop(){
 
  if(gb.update()){
 
    gb.display.print("Hello ");
 
    gb.display.print(name);
 
  }
 
}
 
</pre>
 
 
 
= See also =
 
 
*[[bootloader]]
 
*[[bootloader]]
 
*[http://arduino.cc/en/Reference/String string (Arduino reference)]
 
*[http://arduino.cc/en/Reference/String string (Arduino reference)]

Latest revision as of 2014-05-20T21:04:18

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

See also