mobilebasic/README.md

25 lines
1.4 KiB
Markdown
Raw Permalink Normal View History

2021-03-29 19:37:49 +03:00
# mobilebasic
2021-03-29 20:04:10 +03:00
2021-06-16 08:54:09 +03:00
`Mobile_BASIC_4.12.apk` - the latest version of MobileBASIC application. License activation is not needed. https://4pda.ru/forum/index.php?s=&showtopic=304725&view=findpost&p=54246563
2021-03-29 20:04:10 +03:00
`Examples` - directory with the official examples.
2021-06-16 08:54:09 +03:00
`math`, `netjson`, `picture` - my libraries:
2021-03-29 20:04:10 +03:00
- `math/maplib.bas` - library with math function map() and constraint(), like in Arduino C++ (Wiring C++).
- `netjson/json.bas` - library for parsing JSON.
2021-06-16 08:54:09 +03:00
- `picture/drawbitmap.bas` - library for reading and drawing BMP.
2021-03-29 20:04:10 +03:00
- `example.bas` - program with example using of functions from these libraries.
`test` - my test programs:
2021-06-16 08:54:09 +03:00
- `loading.bas` - a loading circle with percents and button OK (click it to exit).
2021-03-29 20:04:10 +03:00
- `accel.bas` - reading accelerometer values and changing the position of a white square (like a car in a game "Blocky Highway").
2021-06-16 08:54:09 +03:00
- `variant.bas` - can I assign VARIANT with DOUBLE-data to an INTEGER-variable? Yes. Execute this program to make sure.
- `/geopos/main.bas` - GPS testing.
`cars` - an interesting **working** game on MobileBASIC! (I did it :slightly_smiling_face: )
Based on my accelerometer test (`test/accel.bas`). The game can detect screen rotation automatically.
2021-06-17 09:45:11 +03:00
`tictactoe` - classic Tic-tac-toe or Crosses&Noughts. This game **works** too!
2021-06-16 08:54:09 +03:00
`temp` - a randomizer, that can be used instead of wireless thermometers... (Do you remember that joke?)