Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: snake/snake.cpp
- Revision:
- 18:e58a1f8e72ad
- Parent:
- 15:47ea86f1ed70
- Child:
- 20:980b37fde361
--- a/snake/snake.cpp Tue May 08 11:38:55 2018 +0000
+++ b/snake/snake.cpp Tue May 08 12:38:36 2018 +0000
@@ -12,9 +12,9 @@
void snake::init(){
for (int i = 0; i <_point ; i++) {
- _xoldpos[i] = 15;
+ _xoldpos[i] = 30;
_yoldpos[i] = 23;
- _xnewpos[i] = 15 ;
+ _xnewpos[i] = 30 ;
_ynewpos[i] = 23;
}
dir_snake = 3;