cagsun
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
Engagers Sense-Making Journal ==================== Mari, Marc, Çağsun, Antonio MDEF: Measuring the world / A world in data activity report. **Journal Index** [TOC] ## From objectives to the hypothesis ### Brainstorming We ideated on multiple directions we can take as a team and oriented the conversation towards ways in which we can measure class engagement. ![https://hackmd.io/V5oxTmRXTGC1IJY0ac_oAw](https://i.imgur.com/CXCC4rF.jpg) ### Project Goals **Objective:** We want to provide IAAC with schedule optimization insights for MDEF. **Question:** Does the level of student engagement change during a lecture? **Hypothesis:** Students are not actively engaged in the classroom and get distracted after a period of time. ### Reflection Explain one or more mistakes you've done during that phase? What would you change if will do it again? (max 560 char) There are several ways we could have improved our project. Firstly, we did not consider that the class' seating organization impedes some students from looking at the instructor at times. Some students metioned it was dificult to keep an eye on the LED when they had their backs to the instructors. We also did not consider the class had two instructors, which meant that you could be paying attention to lecturer A while lecturer B is the one lighting up. This means that engaging with the exercise would induce disengagement from the class. The LED lights were also extremeley bright, meaning those closer to the instructor would engage from the sudden change in light rather than class engagement itself. Additionally, it must be considered different periods displayed different amounts of LED fades. The lesser the data, the lesser the accuracy levels for comparison. ## From hypothesis to data ### Tools selection PHYSICAL INTERVENTION TOOLS Tools used for our Physical Intervention included: An Arduino ESP Featherboard, LED Lights, Broad Network, print-out data collection, an online survey and a classrom setting (including a teacher and engagers). ### Tool usage documentation This physical intervention can be repeated continuously as long as there is a network running in a classroom setting. The process can be repated by launching the pre-established code through a network, and observing how students engage with the LED lights placed on the lecturer. --- 1. Randomized color Arduino Code :::spoiler Project code can be accessed here ### Code ``` #include <WiFi.h> #include <WiFiClient.h> #include <WebServer.h> const char* server = "maker.ifttt.com"; const char* resource = "/trigger/engagement_trigger/with/key/nnmdw9RaUq3b36e8fq4dhzIk_9cfEQGhKHUuOF5AldP"; const char* ssid = "..."; const char* password = "..."; int H1 = 0; int H2 = 0; int H3 = 0; int H4 = 0; #include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif #define PIN 12 #define NUMPIXELS 60 Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); uint32_t red = pixels.Color(255, 0, 0); uint32_t blue = pixels.Color(0, 0, 255); uint32_t green = pixels.Color(0, 255, 0); uint32_t yellow = pixels.Color(255, 255, 0); uint32_t color = red; bool counting = false; uint32_t timmer = 0; uint32_t start = 0; void setup() { pinMode(13, OUTPUT); digitalWrite(13,HIGH); pixels.begin(); pixels.setBrightness(50); // Serial.begin(9600); Serial.begin(115200); // PREGUNTARLE A JOSEP CUAL SE QUEDA O QP2 Serial.println(); Serial.println("Booting Sketch..."); /* //ESP32 As access point WiFi.mode(WIFI_AP); //Access Point mode WiFi.softAP(ssid, password); */ //ESP32 connects to your wifi ----------------------------------- WiFi.mode(WIFI_STA); //Connectto your wifi WiFi.begin(ssid, password); Serial.println("Connecting to "); Serial.print(ssid); //Wait for WiFi to connect while (WiFi.waitForConnectResult() != WL_CONNECTED) { Serial.print("."); } //If connection successful show IP address in serial monitor Serial.println(""); Serial.print("Connected to "); Serial.println(ssid); Serial.print("IP address: "); Serial.println(WiFi.localIP()); //IP address assigned to your ESP //---------------------------------------------------------------- } void loop() { if (millis() < (60 * 60 * 1000 * 1)) { color = red; } else if (millis() < (60 * 60 * 1000 * 2)) { color = blue; } else if (millis() < (60 * 60 * 1000 * 3)) { color = green; } else if (millis() < (60 * 60 * 1000 * 4)) { color = yellow; } if (millis() - start > timmer) { Serial.println("changing color"); pixels.fill(color, 0, 60); pixels.show(); if (millis() < (60* 60 * 1000 * 1)) { H1 = H1 + 1; } else if (millis() < (60*60 * 1000 * 2)) { H2 = H2 + 1; } else if (millis() < (60 * 60 * 1000 * 3)) { H3 = H3 + 1; } else if (millis() < (60 * 60 * 1000 * 4)) { H4 = H4 + 1; } delay(5000); pixels.clear(); pixels.show(); counting = false; delay(1000); makeIFTTTRequest(); } if (!counting) { timmer = random(5, 20) * 60000; Serial.println(timmer); counting = true; start = millis(); Serial.print("Start: "); Serial.println(start); } delay(5000); } // Make an HTTP request to the IFTTT web service void makeIFTTTRequest() { WiFiClient client; int retries = 5; while(!!!client.connect(server, 80) && (retries-- > 0)) { Serial.print("."); } Serial.println(); if(!!!client.connected()) { Serial.println("Failed to connect..."); } // Temperature in Celsius String jsonObject = String("{\"value1\":\"") + H1 + "\",\"value2\":\"" + (H2) + "\",\"value3\":\"" + H3 + "\"}"; // Comment the previous line and uncomment the next line to publish temperature readings in Fahrenheit /*String jsonObject = String("{\"value1\":\"") + (1.8 * bme.readTemperature() + 32) + "\",\"value2\":\"" + (bme.readPressure()/100.0F) + "\",\"value3\":\"" + bme.readHumidity() + "\"}";*/ client.println(String("POST ") + resource + " HTTP/1.1"); client.println(String("Host: ") + server); client.println("Connection: close\r\nContent-Type: application/json"); client.print("Content-Length: "); client.println(jsonObject.length()); client.println(); client.println(jsonObject); int timeout = 5 * 10; // 5 seconds while(!!!client.available() && (timeout-- > 0)){ delay(100); } if(!!!client.available()) { Serial.println("No response..."); } while(client.available()){ Serial.write(client.read()); } client.stop(); } ``` ::: <br> 2. LED strip changing color ![](https://i.imgur.com/oOpwXiu.jpg) 3. LED strip necklace 4. Print-out Survey 5. Network color time and sequence Storage (IFTTT, Google Sheets) 6. Output print-out data 7. Online Survey https://forms.gle/DnM1PrGVUNX9m3JH6 ![](https://i.imgur.com/YLKXn9U.jpg) 8. Excel Data Collection 9. Excel statistic Graphs #### Data capturing strategy How do you combine the tool provided with your creativity to prove your hypothesis? How long did you capture data? Our approach to measure engagement involved a visual and manual method for data collection. Students in class were asked assist on data collection on the spot. Additionally, we configured a webhook in our code so that data would be posted and loged in a google sheets document. ![](https://i.imgur.com/glpFIjS.jpg) ![](https://i.imgur.com/6Uit3Uq.jpg) ![](https://i.imgur.com/hiGNjZo.jpg) #### Materials We Used * ESP32 Featherboard Arduino * LED String Light * Clip (to clip apparatus to lecturer) * Print-out Survey * Subjects (Lecturer and Engagers) #### Detail setup instructions 1. We ran the Arduino Code connected to the Wifi network, and started the proces 2. Fitted the LED strip necklace on the lecturer 3. Handed out the Print-out Survey to Students ![](https://i.imgur.com/yN5hyny.png) 4. Collected the print-out data ![](https://i.imgur.com/umHhiKv.jpg) 5. Imported data to excel manually and made visualisations of the results #### Data collected Class Start Time: **11:25** Class End Time: **14:05** Describe the raw data you collected by posting a sample i.e. a picture, a screen capture, etc. #### ATTENDANCE ON THE DAY OF INTERVENTION ![](https://i.imgur.com/GmZLjy7.png) #### TABLE OF ACTUAL SIGNAL TIMESTAMPS | 11:25 START | Red | Blue | Green | |-|-|-|-| | 11:40 | 1st | | | | 11:47 | 2nd | | | | 12:04 | 3rd | | | | 12:17 | 4th | | | | 12:26 | | 1st | | | break 12:27 | | | | | break 12:50 | | | | | 13:09 | | 2nd | | | 13:23 | | | 1st | | 13:40 | | | 2nd | | 13:51 | | | 3rd | | 14:01 | | | 4th | | 14:06 END | | | | #### TALLY OF EACH STUDENT AGAINST ACTUAL SIGNALS | | Period 1 (Red) | Period 2 (Blue) | Period 3 (Green) | Period 4 (Yellow) | |-|-|-|-|-| | Actual Value | 4 | 2 | 4 | 0 | | Student # | | | | | | 1 | 0 | 0 | 0 | 0 | | 2 | 0 | 0 | 0 | 0 | | 3 | 1 | 0 | 1 | 0 | | 4 | 1 | 0 | 1 | 0 | | 5 | 1 | 0 | 2 | 0 | | 6 | 3 | 0 | 0 | 0 | | 7 | 1 | 1 | 1 | 0 | | 8 | 1 | 0 | 2 | 0 | | 9 | 3 | 0 | 1 | 0 | | 10 | 2 | 0 | 3 | 0 | | 11 | 1 | 3 | 2 | 0 | | 12 | 2 | 0 | 4 | 0 | | 13 | 2 | 2 | 2 | 0 | | 14 | 2 | 1 | 4 | 0 | | 15 | 1 | 2 | 4 | 0 | | 16 | 2 | 1 | 3 | 1 | | 17 | 3 | 1 | 4 | 0 | | 18 | 2 | 2 | 4 | 0 | | 19 | 4 | 2 | 4 | 0 | | 20 | 4 | 2 | 4 | 0 | _*note that the color yellow was not displayed._ #### AVERAGE ACCURACY OF TALLIES ON EACH SECTION OF THE CLASS Red: 1st Hour Blue: 2nd Hour Green: 3rd Hour (after break) ![](https://i.imgur.com/wIFP7re.png) #### ACCURACY DISTRIBUTION OF THE CLASS (Each Column is a student) ![](https://i.imgur.com/53mTopc.png) ### Learnings & Tips - Obviously, measuring the light signals from the instructor is a proxy of the real engagement of the students. Looking at the instructor may not mean you're really engaged, and vice versa, there may be some neurodivergent people who can pay attention without looking at the instructor. - It would be good to combine the activity mode of class (theory, hands-on, group work...) against the engagement level of the students. - It would be ideal to do this type of study over a longer period of time with more diverse ways of collecting data to get a better understanding of the actual engagement in class. - Self reporting survey at the end of this study didn't really work, as noone filled in the survey at the end of the session. It's a dilemma because we believe engagement can best be self-reported but asking people to get engaged with an additional element when you're studying their engagement may create bias in the study. - Researching the engagement data of students from external resources mostly originate from engagement data of online learning sessions. We've reflected that measuring engagement in physical world is so much harder than in the digital space, which is evident in the way digital tools are obsessed about capturing our data as we use them. ## Data captured ### Data summary | Data Summary | | |--------------------------|---------------------------| | Project Title | Mdef Engagement | | Capture Start | 9-03-2023 | | Capture End | 9-03-2023 | | Original Data Format | Multiple images | | Submitted format | CSV file | | Total Data Points | 20 | | Number of datasets | 1 | | Data Repository | https://drive.google.com/file/d/1iPhQD3kSjyCDpgKvY3Ua29vpMweIm6_k/ | ## Data insights Since students pay more attention at the start and and the end of the class, we suggest shorter time periods and a scheduled break in between. **That is, instead of:** 10:00 hrs - 14:00 hrs **We propose:** 10:00 hrs - 11:45 hrs Class pt.1 11:45 hrs - 12:15 hrs BREAK 12:15 hrs - 14:00 hrs Class pt.2 This would reduce the phase of class where students disconnect and begin to interact with other activities or disengage completely. We also consider that this design could make information easier to digest and also easier for instructors to organize and communicate. --- ## References * https://randomnerdtutorials.com/esp32-esp8266-publish-sensor-readings-to-google-sheets/

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully