Desmos Classroom is a free tool to have students interact digitally during a lesson. In this “how to” I will show you how to have students sketch something on one screen of the lesson builder and have it show up on another screen of the lesson builder using the computation layer.
Customizing Desmos Classroom
Desmos Classroom in a nutshell is a series of screens with various types of interactivity. The teacher has a dashboard to view student responses and can pace the lesson.
In a previous post I showed you how to use the computation layer (CL) to customize a lesson with the students name. In this example we will go a step further to include student responses from one screen on another screen.
Provide a Variable Name for the Component
On the screen where students will input their response, be sure to enter a variable name. This should be all one word, no spaces. The variable name needs to be unique, each time you name a component choose a different variable name. Students will not see the variable name, this is simply for referencing at a later time.
On Another Screen
On another screen, add a note widget. Instead of typing your note in the text area, click on the computation layer icon < / >.
Content Sink
You want to “code” the content of the textbox rather than type it directly. This allows the note to be dynamic based on previous student inputs.
Type content:
This tells the computation layer what content the note should display. Your text will need to be enclosed in quotations.
${ }
To add variables to your text string you will want to type a dollar sign and a set of curly braces. Within the curly braces, type the variable name.
I use the variable name for the box where the students entered their name. Anywhere I want the students name to appear, by using the computation layer, I use ${name.content}. You will need to press period after typing the variable name for the options of what feature of the variable you want to display. In this case, the content of what the student entered as their name.
In my example I had the students explain their response to a multiple choice selection. I named the multiple choice component response1
In the note content on another screen, in the computation layer I build the content to be dynamic. Using ${ } with the variable name between the curly braces, I press period for the variable name to indicate the element of the variable I want to display. In this case I want the choice explanation. ${response1.explainContent}
message = when response1.isSelected(1) “${response1.choiceContent(1)}”
when response1.isSelected(2) “${response1.choiceContent(2)}”
when response1.isSelected(3) “${response1.choiceContent(3)}”
when response1.isSelected(4) “${response1.choiceContent(4)}”otherwise “Choose at least response on the previous screen.”
content:”${name.content}, please review your response: ${message} and your explanation: ${response1.explainContent}.”
Desmos Classroom Sketch and Show
On one screen I want the student to use the sketch widget to draw something. It is important to give the sketch a variable name. I am using sketch1
On Another Screen – Another Sketch
What I want is for the sketch that the student did on one screen to appear on another screen. For this, I will need the sketch widget again. In the computation layer of the new sketch widget, describe the background as a stack of layers of the sketch and the stroke. Start with the sink background: and then use layerStack to describe the layers of the sketch.
background: layerStack(sketchLayer(sketch1.sketch),sketchLayer(sketch1.currentStroke))
bounds:sketch1.bounds
Sample Template
Make a copy of my sample to use as a starter or to view the computation layer:
- How to Personalize a Desmos Lesson
- Google Keep: Sketch a Note
- Google Docs: Insert a Special Character with Sketching
- The Key to Close Reading
- 5 Features of Google Jamboard
-
Feedback Made Simple in Google Classroom
Providing timely feedback in Google Classroom is important. Join Alice Keeler for a free OTIS workshop on feedback in Classroom.
-
Translating Your Google Form
Add multiple language translation to each question in your Google Form. Translating your Google Form is fast and easy with Quiz Helper.
-
Harnessing the Power of =TIME()
You have a start and end time, how do you display them together in the format of 8:10 – 8:15???? Harness the power of =TIME()
-
6 Tips for Managing Google Drive
Your Google Drive is a hot mess and you need help managing Google Drive. Try these 6 tips to reduce your stress and use Drive better.
-
Grab the Power of Randomization in Sheets
So many great reasons for teachers to apply randomization in Sheets. Share your ideas.
-
Present Google Slides NOT Full Screen
Options for how you present your Google Slides. Perhaps you want to present Google Slides NOT full screen.