|
open(FlashTransfer) - Version: 570
|
||||
|
Description
Parameters FlashTransfer – Receive images from the IDE via the TouchShield’s serial link. Returns none Example PImage battlePic; //Create an image void setup() { background(0); //set the entire screen to black open(FlashTransfer); //for the TouchShield to wait and receive files battlePic = loadImage(“battle.bmp”); //read the uploaded image file from memory image(battlePic,0,0); //paint image at pixel location (0,0) } void loop() { // Do nothing! } Related FlashTransfer
|
||||



