Code Monkey home page Code Monkey logo

mbed_pbl's Introduction

mbed_pbl's People

Contributors

forno avatar tanacchi avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

mbed_pbl's Issues

オプションの案が欲しいです

明るい方を向くみたいな機能はサイズとかの関係で無理そうでした。
じゃけえ代案を考えていただきたいです

今のところ、モード選択で「温度計」と「カウンター」の機能を取り入れようかなっていう案しか出てないです
できるだけ多くの案がほしいっていうのと、開発にかかる時間を考えるとなるべく早く決定したいっていう感じです

よろしくお願いします〜

J班のプログラミングについて

何となくは分かるんだけど発表の時説明できるか分からないので、J班の分のキッチンタイマーのプログラミングの説明をざっくりでもいいからまた文章で流れを説明してもらったりできませんか?

void sevseg_LED::split_Numerical_Pos() {
  int i, j, k = 0;
  for (i = head; i > tale; i--){
    for (j = 0; input_number >= powpow(10, i); j++) input_number -= powpow(10, i);
    splited_num[k++] = j;
  }
}
void sevseg_LED::input_inteder_ary() {
  for (int i = 0; i < SEVSEG_WIDTH; i++)
    for (int j = 0; j < SEGMENT_NUM; j++)
      inteder_array[i][j] = convert_NUMintoARY(splited_num[i])[j];
}
void sevseg_LED::output_sevseg() {
  output_array(inteder_array);
}
int powpow(int a, int b) {
  int dest = 1;
  if (b > 0) for (int i = 0; i < b; i++) dest *= a;
  if (b < 0) for (int i = 0; i > b; i--) dest /= a;
  return dest;
}

あとここらへんがあまりピンとこなかったので説明してもらえたらうれしいです
できたら文章だと見返せるからそっちのほうがありがたいです

あと、スイッチとブザーは講義資料のをそのまま入れればいいよね?どこに入れるかが今まだ分からないんだけど

長くなってごめんね、よかったらお願いします

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.