Photo
After I read the results I found that connection is a key element for growth and confidence. Another interesting but unexpected result finds that parents would like to couple children to interact or exchange stuff with.
In collaboration with INTERACTION DESIGN I created an app to look for hobby’s and likeminded people. The key aspect is to explore yourself whilst getting in touch with people who have similar interests.
0 notes
Text
How to get in touch with my target audience?
QUESTIONS:
For parents:
Which toys have a positive effect on your child and how does this show?
Which toys have a negative effect on your child and how does this show?
In what kind of situations do you sense that your child is lacking confidence?
Which toys do you think could support your child’s development/increase his/her confidence?
What toys or other tools could support you in your parenting?
What kind of attitude are you missing in the toy market?
For professionals:
What are common causes for insecurities in young children?
What methods are used to treat self esteem in children in psychology?
How can parents help children with a lack of confidence?
How can toys play an important role in this process?
Are there examples of toys used in this situation?
After refining these questions with Janine I shared them on social media in parenting and general groups:
Hello everyone,
I'm working on an art project regarding toys for children between the age of 5-10 years old. I'd love to know your experiences!
If you'd like to help, please fill in the anonymous (and pretty short) questionaire below:
For parents, caretakers, grandparents, baby sitters etc: https://forms.gle/NpcP543fJaVBmtTA6
For professionals (children's psychologists, doctors): https://forms.gle/QbGtD2iaEkPTajRw6
Thank you very much in advance!
0 notes
Text
Design thinking
Empathise to help define the problem (define)
Define
Ideate making things sharp with the questions
Prototype to learn to spark new ideas
Test reveal the insights that redefine the problem (define) / learn about users through testing (emphasise) / create new ideas for the project (ideate)
// Stakeholder mapping (didn’t explain)
0 notes
Text
What is your design challenge?
Young children are impressionable; easily influenced by what they see and hear, especially by digital media. My goal is to create personalised objects that are based on the child’s identity but exaggerated in an entertaining and educational matter.
// stuffed animals, books or apps
0 notes
Text
Values
CRAFTMANSHIP
IDENTITY
ETHICAL
PROMISING
WARMTH
Target group: Promoting self esteem in young children under the age of 8
0 notes
Photo


I’m growing two indigo plants! I chose a sun appropriate spot for my babies. I hope I can keep these ones alive. (real pic following soon)
0 notes
Photo



My booklet can be found at:
https://indd.adobe.com/view/709f5b87-c807-4590-ab4f-00c3cad32b10
0 notes
Text




Charging a battery with a dynamo to make the blended work, whilst sending information to ThingSpeak
#include <ThingSpeak.h>
#include <ESP8266WiFi.h>
const char ssid[] = "KABK-Students"; // replace with your wifi ssid and wpa2 key
const char pass[] = "kabk@air";
int batterylevel = 0;
WiFiClient client;
unsigned long myChannelNumber=789907;
char myWriteAPIKey[]= "NPREH5P73GPPJVRU";
void setup()
{
Serial.begin(9600);
delay(10);
Serial.println("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, pass);
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
}
void loop()
{
batterylevel = analogRead(A0);
ThingSpeak.setField(1,batterylevel);
ThingSpeak.writeFields(myChannelNumber,myWriteAPIKey);
delay(10000);
}
0 notes
Text




Assignment 3 NodeMCU uplink and downlink
#include <ESP8266WiFi.h> //Including library to use esp8266
#include <DHT.h> // Including library for dht
#include "ThingSpeak.h" //Including library to send data to thingspeak
#define DHTPIN 5 //pin where the dht11 is connected can use int as well define is constant
DHT dht(DHTPIN, DHT11); //create an object dht, define pin and model
//WiFi credentials
char ssid[] = "KABK-Students"; // your network SSID (name)
char pass[] = "kabk@air"; // your network password
WiFiClient client;
//ThingSpeak credentials credentials
unsigned long myChannelNumber = 778182; //your channel ID
char myWriteAPIKey[] = "JGEOO0VKX0OK9OS2"; //"Write API" of your channel
//float data = 345; //data that I sendf to thingspeak
int wait = 20000; // Time between two uplinks
float temp = 0; //variable where to save temperture
float hum = 0; //variable where to save humidity
int wait2 = 1000;
void setup() {
Serial.begin(9600);
WiFi.begin(ssid, pass);
Serial.print("Connecting");
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println();
Serial.println("\nConnected.");
dht.begin(); //Initialize DHT
ThingSpeak.begin(client); //Initialize ThingSpeak
}
void loop() {
temp = dht.readTemperature(); //save the temperature in the variable temp
hum = dht.readHumidity(); //save the humidity in the variable hum
Serial.print("Temperature: "); Serial.print(temp); Serial.println(" °C"); //print on serial temperature
Serial.print("Humidity: "); Serial.print(hum); Serial.println(" %"); //print on serial humidity
Serial.println("");
// set the ThingSpeak fields with the values
ThingSpeak.setField(2, hum);
// set the ThingSpeak fields with the values
ThingSpeak.setField(1, temp);
// send uplink
ThingSpeak.writeFields(myChannelNumber, myWriteAPIKey);
// wait before the next measurment
delay(wait);
}
0 notes
Photo
For some reason my account doesn’t exist?????? so for the sake of time I collaborated with Lorenzo on assignment 3.
0 notes
Text
Assignment 1: What is the difference between the variable types: ‘int’ and 'long’ in Arduino language?
‘Int’ has a smaller range with a minimum value of -2^15 and a maximum value of (2^15) -1.
‘long’ has a longer range and stores 32 bits (4 bytes), from -2,147,483,648 to 2,147,483,647.
0 notes
Text


A few adjustments were made to refine the survey as we prepare our presence within the school.
0 notes