Skip to content

Commit 6609f47

Browse files
authoredJul 31, 2023
new Version (without new UI)
1 parent 95a8a35 commit 6609f47

File tree

5 files changed

+56
-33
lines changed

5 files changed

+56
-33
lines changed
 

‎README.md

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
# Empathy Mapping with Pepper
2-
*Attention: this project is only available in German!*<br>
3-
4-
### About
5-
6-
An empathy map is a simple but very effective tool for compiling assessments
7-
of the perception and emotional world of your own target group.
8-
This scenario was developed for the bachelor's degree in business administration.
9-
Students fill out their own empathy map during the exercise. The exercise lasts ~35 minutes.
10-
11-
### How the program works
12-
13-
At the start of the exercise, Pepper explains what an empathy map is and what the empathy mapping process is used for.
14-
Then the Pepper asks the students to fill in their own empathy map during the exercise. (These were distributed at the
15-
beginning of the lesson.) After that, Pepper goes through the ten questions with the students.He gives the students
16-
enough time to fill their own empathy map. An acoustic signal warns the students when to start and finish the task.
17-
Pepper also makes several animations in between to entertain the students.
18-
19-
### What do you need?
20-
21-
In addition to this program on your Pepper, you also need empathy maps for the students which they have to fill out.
22-
23-
### Plans of further development:
24-
25-
We currently have no plans to further develop the program.
26-
27-
### Android Studio screenshot:
28-
![image](https://github.com/Humanoid-Robots-as-Edu-Assistants/Emapthy-Mapping-with-Pepper/blob/master/EmpathyMap.png)
1+
# Empathy Mapping with Pepper
2+
*Attention: this project is only available in German!*<br>
3+
4+
### About
5+
6+
An empathy map is a simple but very effective tool for compiling assessments
7+
of the perception and emotional world of your own target group.
8+
This scenario was developed for the bachelor's degree in business administration.
9+
Students fill out their own empathy map during the exercise. The exercise lasts ~35 minutes.
10+
11+
### How the program works
12+
13+
At the start of the exercise, Pepper explains what an empathy map is and what the empathy mapping process is used for.
14+
Then the Pepper asks the students to fill in their own empathy map during the exercise. (These were distributed at the
15+
beginning of the lesson.) After that, Pepper goes through the ten questions with the students.He gives the students
16+
enough time to fill their own empathy map. An acoustic signal warns the students when to start and finish the task.
17+
Pepper also makes several animations in between to entertain the students.
18+
19+
### What do you need?
20+
21+
In addition to this program on your Pepper, you also need empathy maps for the students which they have to fill out.
22+
23+
### Plans of further development:
24+
25+
We currently have no plans to further develop the program.
26+
27+
### Android Studio screenshot:
28+
![image](https://github.com/Humanoid-Robots-as-Edu-Assistants/Emapthy-Mapping-with-Pepper/blob/master/EmpathyMap.png)

‎build.gradle

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
//new stuff
3+
buildscript {
4+
repositories {
5+
jcenter()
6+
}
7+
dependencies {
8+
classpath 'com.android.tools.build:gradle:8.0.1'
9+
10+
classpath 'com.google.gms:google-services:4.3.10'
11+
}
12+
}
213
plugins {
3-
id 'com.android.application' version '7.2.0-rc02' apply false
4-
id 'com.android.library' version '7.2.0-rc02' apply false
14+
id 'com.android.application' version '8.0.1' apply false
15+
id 'com.android.library' version '8.0.1' apply false
516
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
617
}
718

819
task clean(type: Delete) {
920
delete rootProject.buildDir
10-
}
21+
}

‎gradle.properties

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ kotlin.code.style=official
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
2323
android.nonTransitiveRClass=true
24-
android.enableJetifier=true
24+
android.enableJetifier=true
25+
android.defaults.buildfeatures.buildconfig=true
26+
android.nonFinalResIds=false
+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#Sun Jun 26 22:26:26 CEST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
4+
#distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
5+
#distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
46
distributionPath=wrapper/dists
57
zipStorePath=wrapper/dists
68
zipStoreBase=GRADLE_USER_HOME

‎local.properties

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## This file must *NOT* be checked into Version Control Systems,
2+
# as it contains information specific to your local configuration.
3+
#
4+
# Location of the SDK. This is only used by Gradle.
5+
# For customization when using a Version Control System, please read the
6+
# header note.
7+
#Mon Jul 03 10:00:22 CEST 2023
8+
sdk.dir=C\:\\Users\\admin\\AppData\\Local\\Android\\Sdk

0 commit comments

Comments
 (0)
Please sign in to comment.