Difference between revisions of "Gb.begin"

From Gamebuino Wiki
Jump to: navigation, search
(updated to fit the latest library version)
(Example: updated url)
 
Line 14: Line 14:
  
 
== Example ==
 
== Example ==
<gistit>https://github.com/Rodot/Gamebuino/blob/master/libraries/Gamebuino/examples/5.Reference/core/begin/begin.ino</gistit>
+
<gistit>https://github.com/Rodot/Gamebuino/blob/master/examples/5.Reference/core/begin/begin.ino</gistit>
  
 
== See also ==
 
== See also ==
 
* [[gb.titleScreen]]
 
* [[gb.titleScreen]]
 
* [[gb.pickRandomSeed]]
 
* [[gb.pickRandomSeed]]

Latest revision as of 2016-12-15T00:54:08

Description

Initialize the Gamebuino. Should be called once at the beginning of the setup() function, followed by gb.titleScreen() and gb.pickRandomSeed().

Syntax

gb.begin();

Parameters

none

Returns

none

Example

See also