Git Product home page Git Product logo

ese519_lab2b's Introduction

ESE519_lab2B

Contributor: Xingqi Pan, Yuxuan Li, Yuxin Wang

LED

The following link is the LED gif of our breadboard in action:

https://media.giphy.com/media/joMgdCdvrxvvOjSpzw/giphy.gif

More detialed please check the following code

#include <stdio.h>
#include <stdlib.h>
#include "pico/stdlib.h"
#define SDA_PIN 22

int main(){
    stdio_init_all();
    gpio_init(SDA_PIN);
    gpio_set_dir(SDA_PIN, GPIO_OUT);
    while(1){
        gpio_put(SDA_PIN,1);
        sleep_ms(2000);
        gpio_put(SDA_PIN,0);
        sleep_ms(2000);
    }
    return 0;
}

PROPOSAL: Balanced Board

  • An outline of what you plan to build, and why you think it’s cool.

    • What we gonna do: Using IMU to detect the title of the board and reflect it by the luminance of the LED located at 4 directions(corners).

    • Why we do this: This is the fundamental part of the drone, we plan to use it to keep the drone balance and measuring the degree of balance of the drone.

  • Components requested from Detkin (after confirming availability).

    • Servo: Micro servo SD-90 servo

    • Display: 128*32 OLED SSD1306 Display

    • IMU:

  • Any questions about your design or component selection.

    • RP2040 only has two I2C ports (one on the QT connector, one on the breakout pads), but what if the final project we want to build needs more I2C or GPIO ports?

ese519_lab2b's People

Contributors

anniepan8215 avatar ariiees avatar yuxuan-li295 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.