Reader small image

You're reading from  The Ultimate Guide to Informed Wearable Technology

Product typeBook
Published inOct 2022
PublisherPackt
ISBN-139781803230597
Edition1st Edition
Right arrow
Author (1)
Christine Farion
Christine Farion
author image
Christine Farion

Christine Farion is a Post Graduate Lecturer at The Glasgow School of Art for MDes Inn and Interaction Design. A PhD in Smart objects in the domain of Forgetfulness, Christine has been involved in teaching computing, programming, electronics, and prototyping for over 15 years. Previously she created interactive installations internationally, and did research and support for a visual impairment charity. Her interests are memory, accessibility, and physical computing. Currently researching and creating wearable technologies, her focus is on the way we experience our environment and interact with others. This involves interaction to improve quality of life, interpersonal communication, and community well-being.
Read more about Christine Farion

Right arrow

Troubleshooting

If you have any issues while connecting, then you might start by checking that you have altered the information correctly in the config.h file. Make sure you’ve got the username and the key copied exactly. Also, make sure you’ve got the correct Wi-Fi credentials.

To verify that you don’t have internet issues, you can alter the Serial.println(.); code to Serial.println(io.statusText()); – this will print to the serial monitor what the possible errors are:

// wait for a connection
while(io.status() < AIO_CONNECTED) {
Serial.println(io.statusText());
delay(500);
}

Check for a network disconnect message, which indicates that there is an issue with the internet connection. For other messages, try searching for them and going to the forums for IO.

I also had difficulties with my board dropping out or not being found on the port and other similar issues. I found I had to close Arduino and then relaunch it. Version 2.0 of the IDE...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
The Ultimate Guide to Informed Wearable Technology
Published in: Oct 2022Publisher: PacktISBN-13: 9781803230597

Author (1)

author image
Christine Farion

Christine Farion is a Post Graduate Lecturer at The Glasgow School of Art for MDes Inn and Interaction Design. A PhD in Smart objects in the domain of Forgetfulness, Christine has been involved in teaching computing, programming, electronics, and prototyping for over 15 years. Previously she created interactive installations internationally, and did research and support for a visual impairment charity. Her interests are memory, accessibility, and physical computing. Currently researching and creating wearable technologies, her focus is on the way we experience our environment and interact with others. This involves interaction to improve quality of life, interpersonal communication, and community well-being.
Read more about Christine Farion