Name Badge project page (#2477)
* Name Bagde project page * gotta please the summary check * link typo, ugh
@@ -48,6 +48,7 @@
 | 
				
			|||||||
    * [Radio bridge](/projects/radio-bridge)
 | 
					    * [Radio bridge](/projects/radio-bridge)
 | 
				
			||||||
    * [Snap the dot](/projects/snap-the-dot)
 | 
					    * [Snap the dot](/projects/snap-the-dot)
 | 
				
			||||||
    * [Red light green light](/projects/red-light-green-light)
 | 
					    * [Red light green light](/projects/red-light-green-light)
 | 
				
			||||||
 | 
					    * [Name Badge](/projects/name-badge)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## #examples
 | 
					## #examples
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										
											BIN
										
									
								
								docs/projects/MakeCode Microbit Workshop.pptx
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -32,8 +32,9 @@
 | 
				
			|||||||
  * [Duct Tape Wallet](/projects/wallet)
 | 
					  * [Duct Tape Wallet](/projects/wallet)
 | 
				
			||||||
  * [Watch](/projects/watch)
 | 
					  * [Watch](/projects/watch)
 | 
				
			||||||
  * [Stopwatch](/projects/stopwatch)
 | 
					  * [Stopwatch](/projects/stopwatch)
 | 
				
			||||||
  * [Step counter](/projects/step-counter)
 | 
					  * [Step Counter](/projects/step-counter)
 | 
				
			||||||
  * [Duct Tape Watch](/projects/duct-tape-watch)
 | 
					  * [Duct Tape Watch](/projects/duct-tape-watch)
 | 
				
			||||||
 | 
					  * [Name Badge](/projects/name-badge)
 | 
				
			||||||
* [Music](/projects/music)
 | 
					* [Music](/projects/music)
 | 
				
			||||||
  * [Hack Your Headphones](/projects/hack-your-headphones)
 | 
					  * [Hack Your Headphones](/projects/hack-your-headphones)
 | 
				
			||||||
  * [Banana Keyboard](/projects/banana-keyboard)
 | 
					  * [Banana Keyboard](/projects/banana-keyboard)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,6 +30,11 @@
 | 
				
			|||||||
  "description": "Build a watch from duct tape",
 | 
					  "description": "Build a watch from duct tape",
 | 
				
			||||||
  "url": "/projects/duct-tape-watch",
 | 
					  "url": "/projects/duct-tape-watch",
 | 
				
			||||||
  "imageUrl": "/static/mb/projects/duct-tape-watch.png"
 | 
					  "imageUrl": "/static/mb/projects/duct-tape-watch.png"
 | 
				
			||||||
 | 
					}, {
 | 
				
			||||||
 | 
					  "name": "Name badge",
 | 
				
			||||||
 | 
					  "description": "Make stylish name badge to let everyone know who you are",
 | 
				
			||||||
 | 
					  "url": "/projects/name-badge",
 | 
				
			||||||
 | 
					  "imageUrl": "/static/mb/projects/name-badge.png"
 | 
				
			||||||
}]
 | 
					}]
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										98
									
								
								docs/projects/name-badge.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						@@ -0,0 +1,98 @@
 | 
				
			|||||||
 | 
					# Name Badge
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Make yourself known with a fancy name badge powered by your @boardname@!
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Code
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					First, let's get your name to display on the screen.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Button press 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					From the ``||input:Input||`` Toolbox drawer, drag an ``||input:on button A pressed||`` block onto the Workspace.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```blocks
 | 
				
			||||||
 | 
					input.onButtonPressed(Button.A, function () {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Show a string
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					From the ``||basic:Basic||`` Toolbox drawer drag a ``||basic:show string||`` block into the ``||input:on button A pressed||`` block.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```blocks
 | 
				
			||||||
 | 
					input.onButtonPressed(Button.A, function () {
 | 
				
			||||||
 | 
					    basic.showString("Hello!")
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Show my name
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					In the ``||basic:show string||`` block, type your name.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```blocks
 | 
				
			||||||
 | 
					input.onButtonPressed(Button.A, function () {
 | 
				
			||||||
 | 
					    basic.showString("My Name")
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Test the badge
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Go to the simulator and test your name badge by pressing button **A**.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					```sim
 | 
				
			||||||
 | 
					input.onButtonPressed(Button.A, function () {
 | 
				
			||||||
 | 
					    basic.showString("My Name")
 | 
				
			||||||
 | 
					})
 | 
				
			||||||
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Download
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Download the program to your @boardname@:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					1. Make sure your @boardname@ is plugged into the computer.
 | 
				
			||||||
 | 
					2. Click the `|Download|` button.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## Make
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Now that you have your name showing on the @boardname@, let's make a proper badge to  wear and display it on.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Cut out a badge shape from a piece of colored construction paper.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Loop a piece of duct tape and stick it on the back of your @boardname@.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Stick your @boardname@ onto the front of your badge.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Using a hole-punch, punch out 2 holes in the top of your badge.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Attach the battery pack to the @boardname@.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Tape battery pack onto the back of the badge.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Thread a shoelace through the top 2 holes of your badge.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Tie a knot at the end of your shoelace
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Decorate your badge with colored paper, markers, stickers, glitter.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					It's now finished! you badge is ready let others know who you are.
 | 
				
			||||||
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 124 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/header.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 203 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture1.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 164 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture2.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 186 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture3.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 137 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture4.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 154 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture5.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 106 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture6.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 196 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture7.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 253 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture8.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 150 KiB  | 
							
								
								
									
										
											BIN
										
									
								
								docs/static/mb/projects/name-badge/picture9.png
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						| 
		 After Width: | Height: | Size: 524 KiB  |