Articles
Affichage des articles du juin, 2023
How to use a CSV file stored in Google Drive by an App Inventor application
- Obtenir le lien
- X
- Autres applications
Display an image from Google Drive in an App Inventor application
- Obtenir le lien
- X
- Autres applications
Draw with the CHAR function of Google Sheets
- Obtenir le lien
- X
- Autres applications
Microbit Game: PacMan
- Obtenir le lien
- X
- Autres applications
The Pac-Man game: The basic concept of Pac-Man is simple: guide a small round character through a maze while eating pac-gums while avoiding ghosts. In this video we show how we can use the led matrix of the Microbit to play this game. JavaScript Code let hero = game.createSprite( 2 , 2 ) let food = game.createSprite( 4 , 4 ) let ghost = game.createSprite( 0 , 0 ) ghost.change( LedSpriteProperty . Blink , 100 ) ghost. set ( LedSpriteProperty . Brightness , 10 ) food. set ( LedSpriteProperty . Brightness , 5 ) while ( true ) { basic.pause( 400 ) if (ghost. get ( LedSpriteProperty . X ) < hero. get ( LedSpriteProperty . X )) { ghost.change( LedSpriteProperty . X , 1 ) } else if (ghost. get ( LedSpriteProperty . X ) ...