the role of cognitive flexibility
Tuesday, February 6
Remember that you should have completed this lab on the Circuit Playground Express.
We can use alligator clips easily with the Circuit Playground Express.
Load this sketch, adapted from the Blink program to use pin 6 instead of LED_BUILTIN
(This page describes how the digital pins are labeled on the board itself.)
int ledPin = 6; // control D6 (A1 on CPE)
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(ledPin, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(ledPin, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(ledPin, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
In groups of 2-3, what could you make that uses the light sensor and an external LED as output?
You should use the sensed light level as the input.
You should use LEDs as the output.
The ability to pivot and change is called cognitive flexibility. Cognitive flexibility goes beyond pivoting about plans. It’s also about stretching our imagination to see ourselves and others in our environments in new ways.
As you watch, what resonates with you?
Cognitive flexibility
Be open
Try different perspectives
Generate multiple solutions
Each group will get:
A pivot prompt
3 minutes to “own” the room: brainstorm how to adapt
Everyone else, please remain silent
When it is not your group’s turn, stretch your cognitive flexibility by listening in for different perspectives. Jot down thoughts and ideas, but please do not distract the group that is working.
Remember: It’s about your approach and stretching cognitive flexibility, not about finding the “right” solution.
Practice active listening.
Move from
“It is...” or “It must be...”
to
“Could it be..?” or “Might it be…?”
Articulate your approach.
Explicitly name what’s difficult (maybe the activity itself).
Sample code for Circuit Playground
Pivot prompt #1
Output: Speaker
Pivot prompt #2
Input: Tap sensor (comm_badge)
Pivot prompt #3
Input: capacitive touch
Pivot prompt #4
Output: Temperature (Hello temperature)
Pivot prompt #5
Input: Sound (Microphone Demos > birthday candles)
Pivot prompt #6
Input: Color sensor (color_sense)
Due: Thursday 2/8 before class
On your web site, create a new reflection entry. You may choose whether to use a written (1-3 paragraphs) or recorded (1-3 minute audio/video) format.
Reflect on how you engage in planning and adapting when something unexpected occurs. Use these prompts to guide your reflection:
Creating a plan requires a great deal of mental energy, focus, and direction. Yet we also need to be able to step away from a plan that no longer serves us. Can you think of a time where you had to give up on a plan and wished you’d let go of it sooner?
Viewing a problem from different perspectives can help generate multiple paths forward or identify a "bug" in your approach. Sometimes, when we pause to pull back or zoom in, we gain new insight into the problem at hand. Can you think of other situations where a different vantage point has moved you past an obstacle?