We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25b1fe4 commit 13d6c9dCopy full SHA for 13d6c9d
1 file changed
README.md
@@ -7,15 +7,24 @@ Date: 2018.Sept
7
8

9
10
+## Add extension
11
-## usage
12
-
13
-open your microbit makecode project, in Add Package, paste
+open your microbit makecode project, in Extension, paste
14
15
https://github.com/microbit-makecode-packages/ScrollText
16
17
to search box then search.
18
+## Basic usage
19
+
20
+```
21
+basic.forever(function () {
22
+ ScrolText.showString("Hello", SCROLL_DIR.LEFT, 100)
23
+ ScrolText.showString("Hello", SCROLL_DIR.UP, 100)
24
+ ScrolText.showString("Hello", SCROLL_DIR.RIGHT, 100)
25
+ ScrolText.showString("Hello", SCROLL_DIR.DOWN, 100)
26
+})
27
28
29
## API
30
0 commit comments