https://github.com/obsfx/bbc-microbot-sketches
https://github.com/obsfx/bbc-microbot-sketches
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/obsfx/bbc-microbot-sketches
- Owner: obsfx
- Created: 2020-10-26T22:41:02.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-26T22:45:05.000Z (over 5 years ago)
- Last Synced: 2025-05-31T16:27:46.252Z (about 1 year ago)
- Size: 1000 Bytes
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [BBC Microbot](https://twitter.com/bbcmicrobot) Sketches
+ https://twitter.com/bbcmicrobot/status/1320200939916218369
```basic
1 MODE 2
2 T=0
3 REPEAT
4 T=T+1
5 A=0
6 B=512
7 C=1279
8 D=512
9 GCOL 0,RND(7)
10 MOVE A,B+SIN(T/15)*350
11 DRAW C,D-SIN(T/15)*350
12 PRINT TAB(RND(18),31)
13 UNTIL0
```
+ https://twitter.com/bbcmicrobot/status/1320204070163042304
```basic
1 MODE 0
2 T=0
3 REPEAT
4 T=T+1
5 A=0
6 B=350
7 C=1279
8 D=500
10 MOVE A,B+SIN(T/2)*150
11 DRAW C,D-SIN(T/2)*350
12 PRINT TAB(RND(18),31)
13 UNTIL0
```