Starting from:

$25

ESP8266 - Lab Three - Bus Communication - I2C  - SPI  - Solved

A bus is an interface that allows different components to communicate with each other, so that each component can be modularized and focus on a single task or duty within the larger scope of the system. For example, a modern personal computer generally contains a CPU for processing, memory (usually one of the variants of RAM) for storing programs and instructions that the CPU runs, a hard drive for storing files and user data, a GPU with an LCD display and keyboard/mouse peripherals for user operability, and a sound card.  Computers may have less or they may have more components (e.g. laptops generally have WiFi cards for wireless connectivity to the Internet), but all components within a computer communicate with each other through a type of bus that makes it possible for all of the components to function together to allow your own computers to function.

 

In this lab, we will explore two bus protocols that are common and popular in embedded and IoT systems: SPI and I2C.  We will use SPI to communicate with an accelerometer and I2C to communicate with an LCD screen and start building our smart watch. To begin building our smartwatch application we must complete the following on our ESP8266.

 

Part One: Displaying and Keeping Time
1.    

 
 
 

Obtain and modify the system time. When the ESP8266 boots up, its system time is reset to a default value; use the real-time clock (RTC) to set the system time.

2.    Interface with the LCD screen through I2C and display the system time on the screen; the display should continuously update the time just like in a normal watch.

3.    The OLED display shield comes with 3 buttons. Use these buttons to add functionalities to allow you to change the time and update the LCD display to reflect these changes.

4.    Add in the functionality to view values from the light sensor. Additionally, adjust the display brightness or contrast depending on the brightness in the room (the display should get brighter if the room is dimly lit, and more dim if it is bright out).

 

Part Two: Adding an Alarm
1.    Add in an alarm functionality, that allows you to set an alarm.  When the system time reaches this time, the vibration motor/piezo should start vibrating to indicate that the alarm has gone off. Additionally, there should also be a visual indication.

2.    Aim to combine the time and alarm functionalities into one system. In other words, combine parts one and two into one system.

 

Part Three: Interfacing with the Accelerometer 
1.    Interface with the accelerometer and OLED screen using SPI.

2.    Use the accelerometer readings and implement text scrolling; if you tilt the accelerometer far enough in one of the four principal directions (up, down, left, right), the text on the screen should begin scrolling in the same direction. For example, if you tilt the accelerometer to the right, the text on the screen scrolls to the right until it goes off screen before it reappears on the left side of the screen.

 

Please refer to the links below:

 

Huzzah ESP8266 Board Pinouts:  

https://learn.adafruit.com/adafruit-feather-huzzah-esp8266/pinouts 

 

FeatherWing OLED Overview:  

https://learn.adafruit.com/adafruit-oled-featherwing?view=all#overview 

 

MicroPython ESP8266 Machine Library: https://docs.micropython.org/en/latest/esp8266/library/machine.html#classes 

 

SSD1306 OLED Usage for MicroPython:  

https://learn.adafruit.com/micropython-hardware-ssd1306-oled-display/micropython 

 

ADXL345 Accelerometer Datasheet:

https://www.sparkfun.com/datasheets/Sensors/Accelerometer/ADXL345.pdf 

 

SSD1306 OLED Datasheet:  

https://cdn-shop.adafruit.com/datasheets/SSD1306.pdf 

 

Two’s Complement and Bitwise Operators in Python:

https://wiki.python.org/moin/BitwiseOperators 

 

Two’s Complement Calculator:

http://www.convertforfree.com/twos-complement-calculator/ 

More products