pxt-calliope/docs/projects/smiley-buttons.md
Juri Wolf 77ed2ccfb1
V4 updates (#210)
* update pxt.json files

* Fix button event enums

fixes https://github.com/microsoft/pxt-calliope/issues/206

* Fix Safari CSS Rule for iOS app

fixes https://github.com/microsoft/pxt-calliope/issues/205

* aprove preffered repos

should fix https://github.com/microsoft/pxt-calliope/issues/167
2023-01-11 09:51:27 -08:00

2.0 KiB

Smiley Buttons

Introduction @unplugged

Code the buttons on the @boardname@ to show that it's happy or sad. (Want to learn how the buttons works? Watch this video).

Pressing the A and B buttons

Step 1 @fullscreen

Place a ||input:on button pressed|| block to run code when button A is pressed.

input.onButtonEvent(Button.A, input.buttonEventValue(ButtonEvent.Click), () => { 
});

Step 2 @fullscreen

Place a ||basic:show leds|| block inside ||input:on button pressed|| to display a smiley on the screen. Press the A button in the simulator to see the smiley.

input.onButtonEvent(Button.A, input.buttonEventValue(ButtonEvent.Click), () => { 
    basic.showLeds(`
        # # . # #
        # # . # #
        . . . . .
        # . . . #
        . # # # .`
        );
});

Step 3 @fullscreen

Add ||input:on button pressed|| and ||basic:show leds|| blocks to display a frowny when button B is pressed.

input.onButtonEvent(Button.B, input.buttonEventValue(ButtonEvent.Click), () => { 
    basic.showLeds(`
        # # . # #
        # # . # #
        . . . . .
        . # # # .
        # . . . #`
        );
});

Step 4 @fullscreen

Add a secret mode that happens when A and B are pressed together. For this case, add multiple ||basic:show leds|| blocks to create an animation.

input.onButtonEvent(Button.AB, input.buttonEventValue(ButtonEvent.Click), () => {
    basic.showLeds(`
        . . . . .
        # . # . .
        . . . . .
        # . . . #
        . # # # .
        `)
    basic.showLeds(`
        . . . . .
        . . # . #
        . . . . .
        # . . . #
        . # # # .
        `)    
})

Step 5

If you have a @boardname@, connect it to USB and click |Download| to transfer your code. Press button A on your @boardname@. Try button B and then A and B together.

Step 6

Nice! Now go and show it off to your friends!