Reference   Language | Libraries | Comparison | Changes

Robot?

endBMPFromEEPROM()

Description

Stops drawBMP() from pulling images in EEPROM. Used in conjunction with beginBMPFromEEPROM().

Syntax

Robot.endBMPFromEEPROM()

Parameters

none

Returns

none

Examples

#include <ArduinoRobot.h>
void setup(){
  Serial.begin(9600);
  Robot.begin();
  Robot.readyLCD();

  //The image is pulled from EEPROM
  Robot.beginBMPFromEEPROM();
  Robot.drawBMP("inicio.bmp",0,0);
  Robot.endBMPFromEEPROM();

}

void loop(){
}

See also

Reference Home

Corrections, suggestions, and new documentation should be posted to the Forum.

The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.