09 Group - sprint log (12.10)

这篇博客详细记录了一支名为09GroupM-Sport的团队在软件开发项目中的进度。团队成员分工明确,包括软件开发、原型更新、前端和后端工作以及文档整理。会议内容涉及任务分配和进度讨论。开发过程中,团队成员通过GitHub进行代码提交,使用StepCountListener类实现步数检测。同时,提供了燃尽图和操作截图来展示项目状态。UML设计辅助理解项目架构。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值