2.1.28, initiation update to PXT v5.28.24 (#54)

This commit is contained in:
Amerlander
2019-12-02 05:58:26 +01:00
committed by Peli de Halleux
parent 38a964516e
commit 5c114a0c57
1261 changed files with 50692 additions and 21604 deletions

View File

@@ -1,17 +1,17 @@
# Show String
Show a number on the [LED screen](/device/screen). It will slide left if it is bigger than the screen.
Show a string on the [LED screen](/device/screen). It will scroll to left if it's bigger than the screen.
```sig
basic.showString("Hello!")
basic.showString("hi!")
```
### Parameters
## Parameters
* `text` is a [String](/reference/types/string). It can contain letters, numbers, and punctuation.
* `interval` is an optional [Number](/reference/types/number). It means the number of milliseconds before sliding the [String](/reference/types/string) left by one LED each time. Bigger intervals make the sliding slower.
* `text` is a [String](/types/string). It can contain letters, numbers, and punctuation.
* `interval` is an optional [Number](/types/number). It means the number of milliseconds before sliding the [String](/types/string) left by one LED each time. Bigger intervals make the sliding slower.
### Examples:
## Examples:
To show the word **Hello**:
@@ -19,19 +19,19 @@ To show the word **Hello**:
basic.showString("Hello")
```
To show what is stored in a [String](/reference/types/string) variable:
To show what is stored in a [String](/types/string) variable:
```blocks
let s = "Hi"
basic.showString(s)
```
### Other show functions
## Other show functions
* Use [show number](/reference/basic/show-number) to show a number on the [LED screen](/device/screen).
* Use [show animation](/reference/basic/show-animation) to show a group of pictures on the screen, one after another.
### See also
## See also
[String](/reference/types/string), [show number](/reference/basic/show-number), [show animation](/reference/basic/show-animation)
[String](/types/string), [show number](/reference/basic/show-number), [show animation](/reference/basic/show-animation)