The Link Your Class | https://bbs.csdn.net/forums/MUEE308FZU202201 |
---|---|
The Link of Requirements of This Assignment | https://bbs.csdn.net/topics/610142480 |
TeamName | 09Group M-Sport |
Sprint Collection Link | sprint collection link |
Video demo link | Video link |
GitHub link | GitHub - anasappp/TeamCode |
目录
2.meeting content of this sprint
3.1 check-in records of Github
3.2 screenshots of the operation
1.project progress
Name | Completed Task | Duration | Problem Encountered | Solution | Proportion |
---|---|---|---|---|---|
Han Tong | Software development and code writing | 12h | Andrio Studio Difficulties in software use and difficulty in programming the functional implementation | Go online to find information and complete the code writing task | 11.1% |
Haifeng Zheng | Sprint plan task assignment | 10h | The tasks completed before are more scattered | Discuss with the teammates and assign tasks | 11.1% |
Lanhui Xu | Update of prototype | 10h | How to beautify the interface | collecting data | 11.1% |
Chenlin Wu | Update of prototype | 10h | How to beautify the interface | collecting data | 11.1% |
Yiliang Guo | Front end writing | 10h | The processing of the data is not perfect. | Spruce up the finished front page. | 11.1% |
Boyang Xue | Back end testing | 10h | How to cooperate with the front end to effectively display the data | Learn the method of data processing on the Internet. | 11.1% |
Zheping Lin | Back end testing | 10h | How to cooperate with the front end to effectively display the data | Learn the method of data processing on the Internet.. | 11.1% |
Wenqi Peng | Document organizing | 10h | The sprint documentation requirements are not very clear. | analyze the specific requirements of the sprint document | 11.1% |
Yingxin Qiu | Document organizing | 10h | The sprint documentation requirements are not very clear. | analyze the specific requirements of the sprint document | 11.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
}
}