Group Documentation: Week 4, group 2 (Damian, Jadelyn, Kaz, and Sierra)

First, we decided that I, Kaz, would be doing the documentation process for this week while Damian, Sierra, and Jadelyn focused more on the coding aspect. We then downloaded the arduino software and worked on inputing the code for our arduino circuit! Here is a group photo, look how happy they are to be working on this project!

group photo

After installing the arduino software, we checked the provided document for the code that we would be using this week to make our LED light blink! We did not create this code ourselves and instead used what was already provided for us by our instructors, but we did understand how it operated. We got the light to blink in various different speeds, but our favorite was at the 1000 level. You can find the code we used for the arduino below.

    
      

void setup() { // put your setup code here, to run once: pinMode(0, OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(13,HIGH); delay(1000); digitalWrite(13,LOW); delay(1000); }

After getting the Arduino to light up, we worked on getting the Raspberry Pico to light up. We were able to use similar code to get our LED light to blink, but we had to make sure that we were using the correct pins on the Raspberry Pico, which was pin 2 in this case. We also had to install a packet manager software in order to make our Arduino software talk to the Pico device. This software took a long time to download, but eventually it was installed. Here is the code we used.

    
      void setup() {
        // put your setup code here, to run once:
        pinMode(0, OUTPUT);
      }
      
      
      void loop() {
        // put your main code here, to run repeatedly:
        digitalWrite(25,HIGH);
        delay(1000);
        digitalWrite(25,LOW);
        delay(1000);
      }
    
    

This was our work for the group assignment project! Thanks for reading. Czesc!