Due Date: September 26, 2023
1.2.02 Ransomware Lab
Click here to complete this assignment.
Do you not forget to drop the google doc it off into google classroom.
You will be working with my Cyber Capstone students.
Teams:
Cervantez, Stefan M. (lead)
Cortes, Erika
Hammitt, Robert A.
Hiett, Brendan A.
Markentell, Dillon P. (lead)
Huynh, Jake T.
Lopez, Mauricio
Mata, Esteban
Vega, Jose A. (lead)
Oyoque, Gabriel
Payne, Timothy J. Jr.
Rains, Olivia M.
Due Date: September 29, 2023
Lesson 9
Overview
In this lesson, students learn about using the micro bit radio.
Objectives
identify part of the micro:bit that has the radio.
code a program to allow communications between the micro:bits
Materials
• micro:bit and micro-USB cord
• Computer with access to the internet
Click here to check in and check out your Micro:Bit
Click here to launch the micro:bit python interpreter.
Mr. Cusack will lecture and show you how to work with 2 micro:bits.
Be sure to look at the first part and tell Mr. Cusack about the radio.
What type of antenna does the micro:bit have?
What type of RF processor does your micro:bit have?
You will be dropping off 2 files into google classroom.
Your file names will be:
PX_lastname_RadioSender.hex
PX_lastname_RadioSender.py
PX_lastname_RadioReciever.hex
PX_lastname_RadioReciever.py
Due Date: September 29, 2023
Lesson 10
Overview
In this lesson, students review the hints and
the video below to create a program
that works the way my video shows.
Objectives
You will need to time delay to the see the transistion.
See if you can match my timing.
Instruction and resources:
Partial copy of the source code below:
# Add your Python code here. E.g.
from microbit import *
# Show a heart and then count on a clock.
# You will need to figure out what commands
# are missing from the code below.
# See my video to figure out the missing commands
# and timing of these display of each image.
sleep(5000)
while True:
display.show(Image.HEART)
sleep(???)
display.show(Image.HEART_SMALL)
sleep(???)
...
display.show(Image.CLOCK1)
sleep(????)
display.show(Image.CLOCK2)
sleep(????)
...
display.show(Image.CLOCK7)
sleep(????)
...
display.show(Image.CLOCK12)
sleep(????)
Click here and watch the video.
Your program should run like mine.
When you are done, Mr. Cusack has to review it.
Materials
• micro:bit and micro-USB cord
• Computer with access to the internet
Click here to check in and check out your Micro:Bit
Click here to launch the micro:bit python interpreter.
You will be dropping off 2 files into google classroom.
Your file names will be:
PX_lastname_Mystery.hex
PX_lastname_Mystery.py