Paper The following article is Free article

Guiding lights: a classroom light system for knowing when to chase aurora

Published 11 March 2020 © 2020 IOP Publishing Ltd
, , Citation Richard P Hechter 2020 Phys. Educ. 55 035019 DOI 10.1088/1361-6552/ab764e

0031-9120/55/3/035019

Abstract

This article showcases how a Wi-Fi based LED light system that flickers to indicate probability of auroral manifestation became a beacon of inquiry, interest, and critical thinking amongst preservice teachers, staff, and passersby in a teacher education program. Beyond articulating the design phase of the system, highlighted here are the three thematic conversational areas that emanated from the installment of the lights in our lab: inquiries about the lights, inquiries about the aurora, and inquiries about how these lights could be used in classrooms and community spaces. This also provided an opportunity for me to model, and preservice teachers to experience, purposeful technology integration substantially aligned to science content.

Export citation and abstract BibTeX RIS

1. Introduction

In Manitoba, the longitudinal middle province of Canada, we are fortunate enough to live under the auroral oval. This oval is the common trajectory of the northern lights (aurora borealis) as they illuminate the skies over the northern horizon. A primary challenge of seeing the aurora is being able to identify, with some degree of accuracy through evidence-based data, when to go outside. There are several scientific data values that provide insight as to when to venture beyond the light pollution of urban centers for a clearer view of the ethereal lights. A simple measure for this is called the planetary index (Kp) based model [1, 2]. Within this model, values range from 0 to 9 based on the disturbance of the Earth's magnetic field as a result of the plasma stream ejected from the Sun known as the solar wind. Simply, a fast solar wind causes great turbulence resulting in an intense geomagnetic storm and a higher Kp value.

I encourage preservice teachers to be aurora chasers for interest, curriculum connectivity, and place-based authenticity [3]. This article is designed to tell a two-part story of the innovation and use of a simple and inexpensive technology that draws online data from the National Oceanic and Atmospheric Administration (NOAA) and uses a carefully crafted program to command an LED strip light system to flicker specific colours based on the Kp-index values (see figure 1). Our innovation was inspired by Robinson's solar wind monitor made within a school geophysics project [4]. The first part shares the steps, challenges, and insights from how a team led by undergraduate student Karen Latimer innovated the lights.

Figure 1.

Figure 1. Activated lights displaying a high Kp value.

Standard image High-resolution image

The second part describes the themes of questions asked by the unexpected volume of curious people arriving to the lab to see the lights. Three distinct areas of inquiry were collated to be: (a) about the technology, (b) about the aurora, and (c) about the potential use of the lights in classrooms and greater community spaces.

2. Theoretical framework

This project is positioned at the intersection of three theoretical frameworks. The PIC-RAT framework [5], which expands from Hughes, Thomas, and Scharber's [6] model of distinguishing the purpose of technology integration in classrooms into areas of: replacement (R) where the technology replaces traditional teaching, amplification (A) intending to amplify student learning, or transformation (T) where the technology provides a learning experience not possible in the absence of the technology, encapsulates the essence of this project. Kimmons [5] introduces three additional contexts superimposed over the initial three categories based on the relationship teachers have with the technology by further discerning the intended use of the technology for students as passive (P), interactive (I), or creative (C). This additional layer illuminates the purpose and manner in which technology is integrated [7]. In our project, the construction and integration of the lights are creative (C) and transformative (T). The amalgam of creativity and construction within a transformative integration of educational technology can be visualized through Evard's [8] extension on Papert's [9] concept of constructionism, in contending that people actively learn while creating and making.

Constructing the lights emerged from a place of curiosity, passion, and inquiry with a vision for greater use by schools, community centers, and by the public. This process was rooted in teaching and learning science through inquiry [10] as the nature of our project began and progressed through student innovation and curiosity. The lights began as a student-led inquiry for those directly involved, and became a demonstrated inquiry for passersby. This sentiment underlies the nature of our classroom, and what I hope preservice teachers take with them on their pathway towards becoming in-service teachers.

3. Constructing the lights

Beginning with seeking deeper insight into when to go outside to see the aurora, our team began studying the coding and project ideas provided by NASA [11] to make this user friendly for our lab as the prototype for use beyond our classroom. For this part of the project we chose to use the Philips Hue Bridge (henceforth 'Bridge') and Philips Hue Strip Light system (henceforth 'lights') [12]). As we researched comparable LED systems, this one was selected for cost to application ratios, reported functionality, and ease of usability. We coupled this hardware with an accessible application programming interface (henceforth API) and Python module found on github.com.

We then began the process of designing our lights by determining the parameters from which the light system would be engaged. The parameters we selected were three-fold. First, the light system would activate in our room during the school day. Despite the laboratory nature of the room comprised of raised and lowered lab benches, gas spigots, a fume hood, and cupboards full of data collection and laboratory equipment, I maintain this as a community space open and accessible for building and fostering positive educational relationships. As such, our lab is a place where people directly or indirectly involved in our class often visit.

Second, the lights needed to be permanently affixed. Underlying this parameter was to model the realities of teaching and learning, especially with technology. This project prepares preservice teachers for purposeful and feasible technology integration skills that are transferable to different contexts and technologies. With the intention of designing something that did not require daily installation and removal, it provided a context for preservice teachers to model choices they will make as future teachers in terms of criteria, constraints, and considerations of integrating technology into their classrooms. To this end, a reason strip lights were chosen was that they had an adhesive backing which made for easy installation under the white board (see figure 2).

Figure 2.

Figure 2. The strip lights permanently attached under the white board.

Standard image High-resolution image

The final parameter was that the program was coded to run off my laptop computer. The reason for this was to ensure the lights would only flicker when I was in the lab, as this would prevent the lights from activating if another class used the space.

After establishing these parameters, we determined the logistics of engaging this system. The key challenge for us was to connect the Bridge directly into the Wi-Fi router that serves the lab as a critical performance criterion is for the Bridge to transmit the appropriate signals. With the assistance of the university's Information Services and Technology personnel, a special hardwired port was identified in our room and made accessible for this connection. A secondary complication was revealed immediately as these lights needed to run off the secure University Wi-Fi, which is password protected. In terms of design time, overcoming this problem took the most time. In the end, we solved this problem by running the lights off a secondary network generated by a travel Wi-Fi-router.

The second aspect to this was the realization that the code interacts with the Philips API in the Bridge to communicate the instructions to the strip lights. There are three main functions detailed in the Python code. First, the application must connect to the Bridge using the API. Retrieving the IP address of the Bridge and creating the username is done through the API utility developed by Philips. These values are hard-coded into the program and allow the Python program to interact and control the lights. Second, the system needs to retrieve the Kp-index data from NOAA. The data is contained in a JavaScript Object Navigation (JSON) file retrieved over the internet connection to the public on the NOAA website [13] and parsed in the Python code.

The last step was the logic function that controls the light itself. Using coding skills, and some trial and error, the colours of the flickering light were assigned based on the average Kp value calculated from the JSON input file. The light attributes are manipulated in the code and sent to the Bridge API. Below is an example of one day of Kp-index values retrieved from JSON (see figure 3).

Figure 3.

Figure 3. Example Kp index day plot.

Standard image High-resolution image

In an effort to share this project with readers, we have developed an implementation guide, with technical details and artifacts that can be found at: https://github.com/klatimer1/KP-Project.

4. Turning the lights on

The activated light system was first introduced to preservice teachers within our Teaching General Science course. Embedded within the Grade 9 astronomy curriculum, teaching, and learning segment of the class, interest in the lights grew rapidly.

The lights flicker their representative colour (see table 1) every 10 min. Kp value and probability of seeing aurora are directly proportional, as in a low Kp value reflects a lower probability of seeing the ethereal lights in the northern sky.

Table 1. Kp values and their respective color in our light system.

Kp value Colour of lights
0–  <  2 Green
2–  <  3 Yellow
3–  <  4 Orange
4  +   Red

While truly just a strip of flashing lights, they serve a much greater educational purpose. Their presence and coloured flickering became a source that evoked inquiry-based questions from both students and colleagues. It became a tangible and concrete source of curiosity about the aurora, the technology, and the application of the system. In fact, there were so many inquiry questions, the lights acted as a launch point for higher order thinking. Overall, our learning became so much richer because of it. In this light, three separate themes emerged from these discussions.

4.1. Theme one: questions about the lights

The first thematic area of inquiry related to the lights themselves. Most were technical questions, and ones that focussed on the innovation aspect of this creating the technology. These questions lead to further discussions about designing, coding, and integrating technologies strongly aligned with the science content being taught.

Examples of these inquiries were:

  • How do these lights work?
  • Where does the Kp data come from to instruct the lights to display the appropriate colour?
  • How did you code this?
  • Where did you get the idea for this system?
  • Can anyone build these?

4.2. Theme two: questions about the aurora

The second thematic area of inquiry related to the aurora. These questions were rich and deep, and ranged from science-based questions to more theoretical thoughts. Responses to these questions often prompted further questions, and lunch hours evaporated quickly and became impromptu lessons on the nature, origins, science, and cultural stories of the northern lights.

Examples of these inquiries were:

  • What causes the aurora?
  • How far south can people see the northern lights?
  • How do the indigenous people in Churchill, Manitoba talk about the aurora?
  • Is there congruity between the aurora borealis and aurora australis?
  • What is the best time of year to see the aurora?

4.3. Theme three: generated ideas for use in both classrooms and community spaces

The final thematic area of inquiries was based on how to use these lights in other contexts such as the preservice teachers' future classrooms and public community spaces. These are the questions that I enjoyed the most. These questions are grounded in the premise of thinking forward to engaging K-12 students in generating authentic and meaningful questions of their own.

Examples of these inquiries were:

  • While I can find the aurora in the science curriculum, how can I integrate them into other disciplines?
  • Given the cultural stories associated with the aurora, do the aurora appear in the social studies and/or literacy curricula?
  • How detailed can I be with younger aged students about the electron energy excitation and resulting colour displays of particles?
  • Would it be possible to make a version of these lights to place in a community space in rural towns? This way the whole community could see them!
  • How can I use these lights as indicators to go outside and take pictures of the aurora?

It is my hope that sharing the details of innovating these lights, and the inquiries that emerged from the people interacting with the lights, readers can think of potential projects that are authentic and meaningful to them such that they could design for their home classrooms with their students.

While this project cannot exist without the Philips Hue lights and related equipment, each of these pieces can be replaced for the reach of this project to still be felt. In short, the impact of the educational technology used here is more than the technology itself. The light system was created from the pursuit of passion towards the aurora, but the questions, conversations, and interactions that emerged from these lights pushed this project one step further.

It is here where I recognize that platforms, software, hardware, and devices continue to evolve and become obsolete. With the full expectation that the Philips Hue system will be antiquated soon, as all technologies become, the challenge for teachers is to learn how to engage learners in meaningful inquiry around it. Despite this, the purpose these lights serve in classrooms and community spaces is very flexible. Here, the aurora, and windchill factors are contextually relevant. In other geographic locations, data sets of UV Indices (for sun exposure rates), water levels (for flooding), and wind gust velocities (for visibility) may be more contextually appropriate phenomena to reflect in the flickering lights. Regardless of the data set included in the code, the purpose of this project is to make data tangible for students and passersby.

In our project, learners are not only consumers, but producers as well. Constructing the lights fostered a space to think about how technology can be leveraged for learning beyond simply using it for a defined purpose. Further, this project encapsulates a learning experience that was innovative because it invests in educational technology by investing in teachers [14].

5. Conclusions

As we seek to guide teachers towards meaningful physics and technology applications in their classrooms, it is necessary to shift away from the habit of technology for technology's sake. By bringing external interests and passions into the classroom and focusing on a relevant local astronomical phenomenon, it became possible to design a system that uncovered and implemented a natural relationship between coding and physics for place-based, authentic technology integration. The lights, despite their simplicity, invited people to further their learning.

This was not designed as a research study. It is an innovative idea to inspire and provide a model for practitioners and teacher educators interested in bringing technology into their classrooms in ways that are meaningful to people and relevant to the content and context. This was a happenchance occurrence as a result of designing the light system out of my passion, and my students' interests and expertise, and having the external curiosity in it be unexpected. From this I draw attention to two items. First, this project is an example of what can happen when educators are engaged in their own learning and pursuits. This surely cannot be all of the time, but it is something that can act as a model for teachers who wonder if they should pursue their interests. Second, people are curious about science. People may have been turned off by 'school science' sometime throughout their academic careers, but this does not necessarily mean that they are uninterested in the natural world. Here in Manitoba, Canada, we are fortunate enough to see the northern lights on a semi-predictable basis. Having a light system that helps in identifying the probability of their manifestation is both interesting and an example of how technology integration can be aligned to the physics content.

Acknowledgments

With thanks to Karen Latimer, and Dr. David Mandzuk (University of Manitoba), and Dr. Elizabeth Macdonald and the STEM Lab (NASA) for their support and contributions to this work.

Please wait… references are loading.

Biographies

Richard Hechter

Richard Hechter was a secondary level physics teacher for 11 years before becoming a cross appointed associate professor in the Department of Curriculum, Teaching, and Learning, and the Department of Physics at the University of Manitoba. His scholarship in ethnoastronomy and physics education seeks to re-envision physics education as an inclusive space where students learn physics and can begin addressing societal issues.