Ratings Score: 3.2222223
Reviews: 6
Updated: 1716389892
Size:
Installs: 100,000+
Current Version:
Required Android Version:
Interactive Elements:
Developer: Gazzapper Games
Developer Email:
Developer Address:
Available On: PlayStore
<b>Learn to Code</b> with the Simple Turtle STEM coding app, create simple programming code with <b>Turtle LOGO</b> commands to control your Turtle and draw fun images and designs. Learn the basic coding of LOGO and have fun. <b>DRAWMODE </b> is used to Toggle INSTANT DRAW mode ON / OFF <i>* New <b>Keyboard</b> feature added - Tap the cursor line to activate it *</i> Learn & experiment to <b>create amazing Turtle Graphics</b>. Ideal for <b>STEM</b> education & learning. <b>How to use:</b> Perform drawing, repeat loops and 2D actions. No Procedures or Printing Fast, Easy and Fun coding app for students <b>TAP the commands</b> you want, then <b>ADD COMMANDS</b> them to your program! Hit <b>RUN button</b> when done! Use REPEAT for more advanced designs. <b>Tips:</b> 1. <b>Tap commands (or use keyboard)</b>to appear in bottom, then hit <b>"Add Commands"</b>. 2. Your current program code is now displayed on the left. 3. Tap <b>"Run"</b> to execute If you make a mistake hit Clear Screen <b>(CS)</b> or <b>RESET</b> to start again. Key Features: - Simple Loops and Nested Loops. - Create great patterns and designs using code and mathematics. - Simple Tap GUI system for all commands. Educational STEM programming app for teaching coding to beginners, using the Point and Click commands. Useful for your Logo exams or STEM learning events. Ideal for early computing students and stem education projects. Helps improve math skills too. <b>Follows close to the Logo standard</b> Step 1. Press code Commands on right side, press number values on left e.g. FD 50 LF 35 <b>NEW!</b> Nested loops - recursive to multiple levels e.g. Nesting <b> REPEAT 5 ....another repeat...etc END </b> Step 2. Then Hit '< ADD COMMANDS' to add the current bottom line of code to your program listing shown on the left of the screen. (repeat 1 & 2 to add more lines to your program) Step 3. Hit 'Click to Run' to draw using your code <b><i>Remember to hit 'Click to RUN' when you want to execute your commands</i></b> <b>New since version 1.14</b> - Added DRAW MODE to toggle moving Turtle instantly after each single line of commands. Some users seem to expect this, so I have added it as an option. Hit <b>DRAWMODE</b> and then the "< ADD COMMANDS" to activate - do same again to deactivate. Turtle app for use with larger screens. Fun activity coding app for STEM and helping users to learn to code. Tap on code commands on the right and then the number values on the left, then tap 'Add Commands' after a line of commands is ready. Then press DELETE to reset line etc. NOTE: Pressing DELETE on an empty line deletes your program on the left. Example of Computer Programming with Logo: PEN 1 REPEAT 5 FD 10 LT 30 BK 5 LT 20 FD 20 END Sample Shapes ============ Triangle REPEAT 3 FD 50 RT 120 END Hexagon REPEAT 6 FD 50 RT 60 END <b>Programming / Code Commands:</b> FD x = Forward Turtle x pixels BK x = Backward x pixels RT x = Right Turn Turtle by x degrees LT x = Left Turn Turtle by x degrees PU = Pen Up (Do not draw while moving) PD = Pen Down (Draw as normal) REPEAT x = Creates a loop to run x times which runs any commands within the loop. Place END when closing loop. END = Closes a REPEAT loop. (Loops can be nested) PEN x = Color of pen (0 - 7) ENTER COMMAND = Adds current line to Actions List DRAWMODE = Toggles Turtle movement to be Instant OR to wait for Run command. DELETE = Clears the command line first, then the Deletes program Action list one command at a time. RESET = Clears commands and resets your Turtle QUIT = Exits the program