09 Group - sprint log (12.10)

The Link Your Classhttps://bbs.csdn.net/forums/MUEE308FZU202201
The Link of Requirements of This Assignmenthttps://bbs.csdn.net/topics/610142480
TeamName09Group M-Sport
Sprint Collection Linksprint collection link
Video demo linkVideo link
GitHub linkGitHub - anasappp/TeamCode

目录

1.project progress

2.meeting content of this sprint

2.1meeting content

2.2meeting process

3.development process 

3.1 check-in records of Github 

Related code

3.2 screenshots of the operation

3.3 Burndown Chart

4. UML design


1.project progress

NameCompleted TaskDuration Problem EncounteredSolutionProportion
Han TongSoftware development and code writing12hAndrio Studio Difficulties in software use and difficulty in programming the functional implementationGo online to find information and complete the code writing task11.1%
Haifeng ZhengSprint plan task assignment10hThe tasks completed before are more scatteredDiscuss with the teammates and assign tasks11.1%
Lanhui XuUpdate of prototype10hHow to beautify the interfacecollecting data11.1%
Chenlin WuUpdate of prototype10hHow to beautify the interfacecollecting data11.1%
Yiliang GuoFront end writing10hThe processing of the data is not perfect.Spruce up the finished front page.11.1%
Boyang XueBack end testing10hHow to cooperate with the front end to effectively display the dataLearn the method of data processing on the Internet.11.1%
Zheping LinBack end testing10hHow to cooperate with the front end to effectively display the dataLearn the method of data processing on the Internet..11.1%
Wenqi PengDocument organizing10hThe sprint documentation requirements are not very clear.analyze the specific  requirements of the sprint document11.1%
Yingxin QiuDocument organizing10hThe sprint documentation requirements are not very clear.analyze the specific  requirements of the sprint document11.1%

2.meeting content of this sprint

2.1meeting content

Discuss the progress of the development project, complete the column of "Step Today", and divide the team members.

2.2meeting process

3.development process 

3.1 check-in records of Github 

Related code

According to the "number" of steps passed in by StepDetector.

public class StepCount implements StepCountListener {
    private int count = 0;
    private int mCount = 0;
    private StepValuePassListener mStepValuePassListener;
    private long timeOfLastPeak = 0;
    private long timeOfThisPeak = 0;
    private StepDetector stepDetector;

    public StepCount() {
        stepDetector = new StepDetector();
        stepDetector.initListener(this);
    }
    public StepDetector getStepDetector(){
        return stepDetector;
    }

Take ten consecutive steps to start counting the steps. Go less than 9 steps, stay for more than 3 seconds, the count is empty.

   public void countStep() {
        this.timeOfLastPeak = this.timeOfThisPeak;
        this.timeOfThisPeak = System.currentTimeMillis();
        if (this.timeOfThisPeak - this.timeOfLastPeak <= 3000L) {
            if (this.count < 9) {
                this.count++;
            } else if (this.count == 9) {
                this.count++;
                this.mCount += this.count;
                notifyListener();
            } else {
                this.mCount++;
                notifyListener();
            }
        } else {//超时
            this.count = 1;//为1,不是0
        }

    }

3.2 screenshots of the operation

3.3 Burndown Chart

4. UML design

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Forest_Forest

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值