Lab 1:
Lab 1 (Part A)
Step 1 in Lab 1 was to install the Arduino IDE and follow the setup instructions to install the necessary board and libraries. To test that the board was successfully connected to my computer, I used Example: Blink it Up. This example caused the LED on the board to blink on and off which is useful in the future to denote when the Artemis is on (such as on boot up).
Following this, I followed the Example: Serial. This allowed me to type in character inputs and then receive those same character outputs in the Serial monitor. This would be useful for later parts of the lab when I would need to use the Serial monitor to receive temperature readings from the board.
The first sensor was tested using Example2_analogRead which was the temperature sensor. As can be seen in the video, as I pressed onto the sensor (to warm it up), the temperature reading in the Serial monitor increased. As I waved the sensor around (i.e. causing it to cool down with the cool air), the temperature reading in the Serial monitor decreased.
Lastly, I tested the microphone using Example1_MicrophoneOutput. I used an online note player to see how the frequency of the sound would change. I also then used a music video to see how the microphone would return frequencies that had a lot of noise. It was interesting to see that the microphone was able to discern out the highest frequency noises from the jazz music which actually consisted of a medley of frequencies.
Lab 1 (Part B)
To set up for this lab, it was necessary to create a virtual environment with the correct Python and pip versions. I ran into an issue due to my computer’s Python version being 3.8 although we needed above 3.9 for the lab. This is because my Python version was only updated in Anaconda. Because of this, I decided to create a conda environment instead of a venv environment so that I could use more updated versions of Python and pip. To set up my virtual environment, I used the following commands:
After creating my virtual environment (“fastrobots_ble”), I installed the necessary packages (numpy, pyyaml, colorama, nest_asyncio, bleak, and jupyterlab).
The first setup task was to establish the Bluetooth connection. To do this, I ran ble_arduino.ino and was able to print the MAC address:
In connections.yaml, I then updated the MAC address to match the MAC address printed in the Serial monitor:
I then used uuid4() to generate a new UUID and replaced it in both ble_arduino.ino and connections.yaml:
Updates in connection.yaml:
I also was having issues initially establishing a bluetooth connection and had to change if IS_ATLEAST_MAC_OS_12 to if True in the base_ble.py file. I then confirmed that all the command types in enum and cmd_types.py were the same.
To check that the Bluetooth connection was properly established, I ran through demo.py. I was successfully able to go through all the code blocks as can be seen below:
Check for Understanding: The Bluetooth codebase consists of various scripts that allow a Bluetooth connection to be enabled between the Artemis and my computer. ble_arduino.ino takes care of this from the Artemis side. First, the UUIDs that were generated above help identify types of data that will be sent between the Artemis and my computer. BLEService is then used to set the local name and service, add BLE characteristics, and service. The characteristics are different types of data provided by the ArduinoBLE (in our case, we only use BLECStringCharacteristic). Then, there are functions that can write values from the Artemis to transmit to the computer.
Lab Tasks
The first task was to send a String from the computer to the Artemis and then to send an augmented String back from the Artemis to the computer. I was able to accomplish this by using similar logic as the PING case in the code.
The output of echo with String “test” can be seen here:
The next task was to return a String characteristic with the time. This task was fairly straightforward, and I used the millis() function in C to get the time and then append it to “T:”
After being able to receive the time, the next step was to set up a notification handler to receive the string value, and then, in the callback, receive the time from the string that was sent. This is useful to speed up the main control loop (rather than having to wait for data, it takes care of receiving and processing the data without slowing down other processes). I was able to implement a notification handler by using the code below (when I initially tested this code, I kept receiving an error that the notification handler was already enabled; this was because I had not used “stop_notify” when testing. I looked at Julian Prieto and Jueun Kwon’s pages from last year to help me debug this issue).
After setting up a notification handler, I then tested it by instead collecting time in a loop for a couple seconds and then sending that from the Artemis to the computer. I used the datetime package in Python to determine the timestamps of when my computer received the data. From this, I was able to calculate a data transfer rate of 5e7 bytes per second.
Now, I tested another method of sending data where the data would be added to a global array in the Arduino IDE and then another function (“SEND_TIME_DATA”) would send this data to the computer. I was initially running into a lot of issues with being able to create an array of times but not being able to send them via the notification handler. After debugging via Serial.print() statements, I realized that this was because I needed a delay in my loop (the data was being sent too fast), and this allowed me to then see the data saved into a list in my Python file as well.
Now that I could receive time stamps for data, the next step was to create an identically-sized array that would collect temperature readings (as done in Lab 1 (Part A)). It was important that the timestamp in the first array would correspond to the temperature reading taken at that time.
I then added a command GET_TEMP_READINGS that looped through both arrays and sent the temperature readings with a timestamp (which the notification handler then took and added to two lists).
Although one method requires us to create an array and then later loop through that array to send timestamps/sensor data, the other method creates a loop that sends that data automatically. The advantages to the second listed method are that if one needs real time data sent over, that would be helpful to continuously receive data in real time from a sensor on the robot. However, in the case that there is some connectivity issue between the computer and Artemis, this would lead to loss of data with no backup. Thus, if there is real time data that needs to be transferred from the robot to the computer continuously, this method will be useful. On the other hand, if there are not as many opportunities to downlink data and data needs to be sent via packets, the first listed method would be more useful (i.e. in space robots, for example). This would allow for the data to be stored locally (preventing loss of data in case of connectivity issues) and then the data could be sent to the computer. However, this requires memory to be taken up as the values have to be stored before being sent over. The second method records data just as fast as the first one (however, data transfer is slower because now all the data is being sent somewhat delayed and all at a time). With 384000 bytes, that would be the equivalent of 96000 float data points (so 48000 time/temperature data points) and additionally a string to store this data (still close to 48000 data points) before running out of memory.
This lab gave me a strong understanding of how Bluetooth works between the Artemis board and my computer as well as how data is transmitted between the two. I did have some issues with my notification handler (in terms of being able to save the data to a list on my computer), but after understanding the theory behind how the notification handler worked, this process became a lot easier to understand and change based on the requirements of what was needed (i.e. are we storing one timestamp versus an array of timestamps). I feel more confident in my ability to use Bluetooth for future labs now.