access activity 安装tracker 怎么装电池

Make Your Own Activity TrackerIntroduction: Make Your Own Activity TrackerBy Follow
More bythe author:
About: This, Too, Shall Pass Away
RetroBand is the second result of Arduino Wearable Project that is supported by open source. I think this shouldn’t be called a ‘smart band’ since it has only simple features. Actually, it’s rather to be called an “Activity Tracker”… But the term ‘smart band’ is more familiar to me, so I just call it a smart band. The important thing of smart bands is they are connected with mobile devices by Bluetooth and track the daily routine of users.RetroBand that is implemented by Arduino has only one feature, which is collecting data by using accelerometer and sending them to a mobile device. Then the mobile device calculates the calories and steps by using the data. The feature is simple, and that means the structure of this device is way simpler than RetroWatch, so it’s very easy to make it in your own taste. The android app check steps using collected data provided from RetroBand Arduino. The algorithm of the app is not that complicated. If you have much experience to this area, you can replace it with your own algorithm. The app saves the calorie data, so you can see the progress it in a monthly/daily/hourly graph form. FYI, RetroBand Arduino cannot save the data itself since the shortage of its memory capacity. That is, it only works when it’s connected with a mobile device, which means you cannot collect the data with RetroBand Arduino only. I think this problem will be fixed when Arduino gets improved.Add TipAsk QuestionDownloadStep 1: MechanismRetroBand consists of an Arduino part and an Android app.The Arduino has 4 main parts – Arduino board, accelerometer(MPU-6050), Bluetooth module(HC-06), lithum-polymer battery(charge board is optional). The Android app contains of 4 parts – Android UI, Bluetooth manager, Algorithm section, background service. If Arduino powers on and the pairing process with RetroBand app is done, the board check the accelerometer data 20 times in every 1 second. And it transfer the data to the mobile device once a second. The accelerometer measures x axis / y axis / z axis values, so the band sends 60 values(20 times x 3 axis) of data to the device. The Android app receives the data during two seconds and finds out an interval that user’s movement increase dramatically. The number of user’s movement increase is user’s a step count. The app calculate burned calories based on user’s weight and steps, and accumulates data monthly, daily and hourly.Add TipAsk QuestionDownloadStep 2: PreparationIf you want to buy parts which I used, refer to below links.Arduino Pro mini 3.3v - Accel+Gyro sensor (MPU-6050) - Bluetooth (HC-06) - USB to UART converter (FTDI) - For Band(Hardware) ArduinoI used the same Arduino board as RetroWatch, which is Arduino Pro Mini 3.3v(ATmega328). I chose this board because it works well with 3.7v lithium-polymer battery and its size, but if you don’t mind the size of the module and the battery or you just make the band as a test, you can use Arduino Nano board(it’s easy to implement and test). Arduino Pro Mini runs at 8MHz and a 5v version at 16MHz, but 8MHz is enough. Overall, all you need to prepare are Arduino Pro Mini 3.3v and USB to UART(FTDI) module.
Bluetooth Most common bluetooth modules that you can get are HC-06 main module and the one with interface base board. The latter one has a reset button, the status LED, and it supports both operation voltage(3,3v/5v), so this one is more convenient but the size is rather big, the LED, which is not quite necessary drains the battery. So I used a HC-06 without the interface board. Accelerometer I used the MPU-6050(6 DOF) accel + gyro sensor module. If you have other accel sensor you can replace it with yours. In this case, some of source code must be modified. Battery I use LiPo(Lithum-Polymer) battery in this project. 1-cell LiPo battery flows out current in 3.7v, which works perfectly with Arduino Pro mini, and there are many kind of batteries in terms of the size and the capacity. The choice is yours. Under 100mAh one is small, but it doesn’t guarantee stable power, and if it’s too low, you can’t even boot the system. I recommend the battery with protection circuit(overcharging, over-discharging safe), and it’s better if it has a removable socket.For the convenience you can add LiPo charger module in below link. It supports charging with USB and power out pins for Arduino. Etc. You need wires, soldering iron, power on/off switch and a batter jack. It would be helpful for you to prepare the assembly manual.
For Android The Android app for RetroBand is compatible with over Android 4.0 If you are using under Android 4.0 version or an iPhone…sorry.Add TipAsk QuestionDownloadStep 3: AssemblyThis is a picture that shows every module is assembled except the battery. FTDI will provide the power to the module for now, so the battery is unnecessary.Connecting Arduino-Bluetooth moduleIf you want to know how to manage Bluetooth module and test, googling it! You just connect VCC, GND, TXD, RXD pin as the module in the instruction (VCC-&3.3v, GND-&GND, TX-&D2, RX-&D3).Connecting Arduino-Accelerometer(MPU-6050)An accelerometer module uses I2C interface. (VCC-&3.3v, GND-&GND, SDA-&A4, SCL-&A5)Connecting Arduino – batteryIt’s very simple to supply the power. Just connect (+) -& RAW with (-) -& GND. But if you care about recharging, you can use a Li-Po recharging module. In this case, you should connect (+) and (-) connectors on the battery with B+,B- on the recharging module, and out+, out- on the module should be connected with RAW, GND on the Arduino board respectively.Checking ConnectionIf you’ve got through all these process, it should be as below. You should connect each part except the battery. The power is supplied from FTDI module, so you shouldn’t connect the battery until source code upload and test are done. Every test finishes, disconnect FTDI module and connect the battery(or with Li-Po recharging module).Add TipAsk QuestionDownloadStep 4: Arduino Source Code for BandYou can download Sketch(Arduino source code for band) on Github. Go to the link below.Uploading Arduino source You need to upload Arduino source on Arduino board after the compile is done. Before you upload it, select board type ‘Arduino Pro mini 3.3v(ATmega328)’. And you should press reset button manually when you upload the source on Arduino Pro mini. If the process has failed, you can see this message : arvdud: stk500_getsync():not in sync: resp=0×00The reasons why this message appears are usually these: 1. The board type that you choose on Arduino IDE and the actual board is different. 2. The connection between TX, RX pins is wrong 3. Serial pins which are allocated as TX,RX are not used as they should be. 4. Bootloader on the board is malfunctioning 5. User doesn’t reset properly if they use a USB module that doesn’t support the auto reset feature. Case 1, you should select a proper board type in [tools & board] on Arduino IDE, and case 2, you should check whether TX, RX pins are connected properly. If the connection is the same as case 3, disconnect D0 and D1 pin connection. In case of 5, you should press the reset button. If you press the upload button on Arduino IDE, check the message appeared below the IDE. There’s a moment that it changes ‘Compiling’ to ‘Uploading’. You should press the button at that moment. If you see TX/RX LED on the USB module flickering, then the upload process is in progress. Rarely, you can face the case 4. In that case, you should use an UNO board that is possible to upload the source to burn a bootloader on the malfunctioned board. The solution is way too long to describe and it’s out of our purpose, check the link below if you want to fix the problem. Debugging You need to verify every module connects each other and works okay. First, you should run [Serial Monitor] on Arduino IDE to check if the accelerometer works fine(run the program when LED on the board is on after uploading Arduino sorce). Since the source code has a debug code as below, it should print out the values that are transferred from Arduino board if the connection is okay. If it doesn’t, there’s a problem in the connection with the accelerometer(you can delete the debug code once you finish to check).// Print the raw acceleration values&br&
Serial.print(F("accel x,y,z: "));
Serial.print(accel_t_gyro.value.x_accel, DEC);
Serial.print(F(", "));
Serial.print(accel_t_gyro.value.y_accel, DEC);
Serial.print(F(", "));
Serial.print(accel_t_gyro.value.z_accel, DEC);
Serial.print(F(", at "));
Serial.print(iAccelIndex);
Serial.println(F(""));Now, you should check the Bluetooth. It would be found perfectly if VCC, GCN pins are connected properly when the mobile device starts scanning. If you don’t see HC-06 module on the found device list, check the power pin connection.If you’ve done up to this part, it’s time to check the app. # : If there’s nothing wrong with pairing process but the app doesn’t receive the data properly, there might be a problem in the connection of TX / RX pins. That is, the data don’t transfer from Arduino to Bluetooth module well.Add TipAsk QuestionDownloadStep 5: Installing and Running the AppIt’s very huge to explain how to compile Android source code and modify it, so I won’t cover it. But you can easily download the whole source code of the RetroBand Android source code on , and you may modify and distribute it. Just make sure that you preserve the copyright statement. You can find the source code of the app in [RetroBand_Android\RetroBand] folderI distributed my app on PlayStore, so you can install it there(search ‘RetroBand’). Over Android v.4.0 :
If you install the app, run it and pair the mobile device with RetroBand to see the app successfully receives the data. The app has 3 tab menus. Timeline : It gathers cumulative burned calorie data every hour. You can check how many calories you have burned hourly / daily / monthly.Graph : It shows the graph that is drawn by the data sent from the accelerometer. You can see how 3-axis values alter.Settings : You can configure the app setting here, and input your weight here. Some features will be updated soon.If you successfully test the app, connect Li-Po battery and finish the work.The specification of RetroBand: Processor : ATmega328-3.3v(8MHz) 32KB Flash(2KB is shared for Bootloader), 2KB RAM, 1KB EEPROM Connected with Android exclusive app(supported over v.4.0). Calculating calories based on step count. Accumulating calorie data and displaying statistics in a monthly/daily/hourly data Real-time check of the change of the 3-axis values measured by accelerometer Open source You can see the prototype in the picture below. It’s the combination of Arduino + accelerometer + Bluetooth module + recharging module + Li-Po battery + power switch. I plastered glue on it so it looks messy, but it worked pretty well.Add TipAsk QuestionDownloadStep 6: PackagingIf you have a 3D printer, try to make your own case. What you are seeing in the picture is the case that is made by a 3D printer.Add TipAsk QuestionDownloadStep 7: EpilogRetroBand is my second project succeeded to ‘Making your own smart watch(RetroWatch)’. My smart band is too simple to compare other activity tracking products, but a Bluetooth module and an accelerometer are the basic modules that can be used in any other projects. You can make variables by using the source that I used.I hope this would be helpful to you and thanks to people who helped me for this project.Arduino, Android source(GitHub) :RetroBand Android App(Google Play) :Original DIY documents : (in English)Homepage :Special thanks to : Chang-Han Jeon(Translated docs in English), Wired Factory team(Il-Yong Park, Byung-Gyu Kim, KyungReol Ku, Sang-Won Lee, Kyung-Bu Jeong)Add TipAsk QuestionDownload3 People Made This Project! made it! made it! made it!Did you make this project? Share it with us!I Made It!Recommendationsby
67,831 EnrolledSpace ChallengeSpotless ContestPocket-Sized ContestAdd TipAsk QuestionWe have a be nice policy. Please be positive and constructive.Add ImagesPostTipsAdd TipQuestionsAsk Question&&&&提起三星的智能穿戴设备,大家往往想到的都是诸如Gear&S、Gear&Live一样的智能手表,亦或Gear&Fit智能手环。不过,三星还曾低调发布过一款廉价实用的智能追踪器——Activity&Tracker,相信这款专注于运动的智能设备能带给你完全不一样的享受。&&&&三星Activity&Tracker外观时尚精致。它采用人体工学设计,支持腕带和夹扣两种佩戴方式。通过蓝牙4.0与手机配对,Activity&Tracker能够实时与APP同步,并为用户带来精确的运动追踪与睡眠监测等功能。该设备内置锂离子聚合物电池,仅需80分钟即可充满,满电续航长达10天之久。值得注意的是,Activity&Tracker仅支持Andriod&4.3及以上版本。三星Activity&Tracker(图片来自京东)三星Activity&Tracker(图片来自京东)&&&&三星Activity&Tracker智能跟踪器的官方价格为698元,目前您可以在京东商城以598元的价格购买这款产品,同时还将获赠一个价值18.8元的京东随身Wifi。想要获取关于三星Activity&Tracker的更多详情,欢迎您登录京东商城进行选购。&&&&编辑点评:自笔者记事以来,从未觉得三星的产品可以如此低调沉稳。虽然Activity&Tracker是一款廉价的产品,但它绝对不是一部低端的设备。得益于出色的交互性APP与超长的续航能力,三星Activity&Tracker智能运动跟踪器一定会为你的生活带来更多便利。【】【感谢您阅读本文,假如喜欢请点“赞”支持我们,我们会做得更好】&&&&大家扫描下方的二维码关注中关村在线可穿戴频道公共账号“智取未来”:中关村在线可穿戴频道微信“智取未来”
兼容系统 屏幕类型
投诉欺诈商家:
天津重庆哈尔滨沈阳长春石家庄呼和浩特西安太原兰州乌鲁木齐成都昆明贵阳长沙武汉郑州济南青岛烟台合肥南京杭州东莞南宁南昌福州厦门深圳温州佛山宁波泉州惠州银川
本城市下暂无经销商
4¥1795¥2686¥6387¥3998¥4999¥16910¥799& 14,637 Results
Related Categories:
Consumer Electronics
Supplier Location:
Relevancy Transaction Level Response Rate
Response Rate:
US $9.5-11
50 Pieces (Min. Order)
Response Rate:
US $9.8-10.8
50 Pieces (Min. Order)
Response Rate:
1000 Units (Min. Order)
Response Rate:
1000 Pieces (Min. Order)
Response Rate:
1 Piece (Min. Order)
Response Rate:
100 Pieces (Min. Order)
Response Rate:
1 Piece (Min. Order)
Response Rate:
US $18.9-23.9
50 Pieces (Min. Order)
Response Rate:
US $4.1-4.9
50 Pieces (Min. Order)
Response Rate:
US $11.5-16.8
20 Pieces (Min. Order)
Response Rate:
US $9-12.5
1 Piece (Min. Order)
Response Rate:
10 Pieces (Min. Order)
Response Rate:
20 Pieces (Min. Order)
Response Rate:
US $1-4.68
1 Piece (Min. Order)
Response Rate:
US $7.9-9.9
50 Pieces (Min. Order)
Response Rate:
US $4.9-7.9
1 Piece (Min. Order)
Response Rate:
US $14.36-15.81
10 Sets (Min. Order)
US $6.5-7.5
10 Pieces (Min. Order)
Response Rate:
US $2-4.59
10 Pieces (Min. Order)
Response Rate:
1 Piece (Min. Order)
Response Rate:
US $7.5-8.5
5 Pieces (Min. Order)
Response Rate:
US $8.5-10.25
50 Pieces (Min. Order)
Response Rate:
US $12.0-20.5
100 Sets (Min. Order)
Response Rate:
3 Pieces (Min. Order)
Response Rate:
10 Pieces (Min. Order)
Response Rate:
US $15.5-16.0
30 Pieces (Min. Order)
Response Rate:
10 Pieces (Min. Order)
Response Rate:
US $12.8-15.08
10 Pieces (Min. Order)
Response Rate:
US $13.0-15.5
2 Pieces (Min. Order)
Response Rate:
50 Units (Min. Order)
Response Rate:
1 Set (Min. Order)
Response Rate:
2 Pieces (Min. Order)
Response Rate:
US $15.99-19.99
10 Pieces (Min. Order)
Response Rate:
100 Units (Min. Order)
Response Rate:
US $12.0-14.0
100 Pieces (Min. Order)
Response Rate:
US $4.5-7.5
100 Pieces (Min. Order)
US $9-9.99
100 Pieces (Min. Order)
Response Rate:
US $21.0-25.0
1 Piece (Min. Order)
Response Rate:
1 Set (Min. Order)
Response Rate:
10 Pieces (Min. Order)
Response Rate:
US $6.3-6.6
100 Pieces (Min. Order)
Response Rate:
US $8.5-15
1 Piece (Min. Order)
Go to Page
About product and suppliers:
Alibaba.com offers 14,637 activity tracker products. About 41% of these are other mobile phone accessories, 25% are pedometers, and 2% are wristwatches. A wide variety of activity tracker options are available to you, such as paid samples, free samples. There are 14,746 activity tracker suppliers, mainly located in Asia. The top supplying countries are China (Mainland), United States, and India, which supply 97%, 1%, and 1% of activity tracker&respectively. Activity tracker&products are most popular in North America, Western Europe, and Domestic Market. You can ensure product safety by selecting from certified suppliers, including 4,967 with ISO with Other, and 1,574 with ISO14001 certification.
Buying Request Hub
Haven't found the right supplier yet ? Let matching verified suppliers find you.
Do you want to show activity tracker or other products of your own company?
Related Category
Product Features
Sample OrderNEW
Minimum Order:
Supplier Features
Supplier by Area
Suppliers by Country/Region
Supplier Types
Top 3 Markets
Total Revenue
Mgnt Certification
Recommendation for you
related Guide
ensearchwebLines activity tracker
首先动效很赞,其次设计元素做到了极简,显得干净利落,再者进度条/数据的呈现也值得借鉴。
打开微信“扫一扫”,将本文章分享到朋友圈
快给朋友分享吧!
420人已收藏
Ctrl+Enter
你的打赏就是我的动力!
悄悄说,听说打赏的人收入都比我高,不信你试试。
注: 打赏金额随意,完成后,请手动关闭本窗口。
Ctrl+Enter
您将要删除您的首页推荐大作
Lines activity tracker
在她入驻到UI中国的日子里
总共吸引了33111位设计师的驻足流连
总共收获了374位设计师的由衷赞赏
总共获得了420位设计师的悉心珍藏
总共引起了21位设计师的深入讨论
依然要删除吗?}

我要回帖

更多关于 activity tracker 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信