├── .eslintrc.cjs
├── .gitignore
├── .gitmodules
├── .prettierignore
├── LICENSE
├── README.md
├── archive
├── myamazfit-0.en.md
└── myamazfit-0.ru.md
├── demo.png
├── index.html
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── files
│ ├── app
│ │ ├── game-2048-v0.3-by-zener79.elf
│ │ ├── game-4letters-by-x27.elf
│ │ ├── game-Breakout-by-PRO100KBAC.elf
│ │ ├── game-Magic8BallRU-by-erekoze.elf
│ │ ├── game-Minesweeper-by-x27.elf
│ │ ├── game-PingPong-by-PRO100KBAC.elf
│ │ ├── game-Snake-by-PRO100KBAC.elf
│ │ ├── game-SokobanBIP-v1.1-by-000edu.elf
│ │ ├── game-TRex-by-Yuukari.elf
│ │ ├── game-TetrisBIP-v1.3-by-000edu.elf
│ │ ├── game-boxpop-v1.1-by-x27.elf
│ │ ├── game-fifteen-by-x27.elf
│ │ ├── game-flappybird-v0.2.7-by-PRO100KBAC.elf
│ │ ├── game-unblockme-by-x27.elf
│ │ ├── hook-alarm-manager-by-MNVolkov.elf
│ │ ├── hook-animated-menu.elf
│ │ ├── hook-simpleDND-by-MNVolkov.elf
│ │ ├── utility-BTNotes-v3.0-by-ngxson.elf
│ │ ├── utility-BipCounter-v2.4-by-erekoze.elf
│ │ ├── utility-GoHome-by-MikhailU.elf
│ │ ├── utility-NotesBIPAqua-v1.1-by-000edu.elf
│ │ ├── utility-NotesBIPPurple-v1.1-by-000edu.elf
│ │ ├── utility-SafeBoxBIP-v1.1-by-000edu.elf
│ │ ├── utility-calculator-by-MNVolkov.elf
│ │ ├── utility-calendar-by-MNVolkov.elf
│ │ ├── utility-flashlight-by-MNVolkov.elf
│ │ ├── utility-gps-returner-by-x27.elf
│ │ ├── utility-metronome-by-ngxson.elf
│ │ ├── utility-music-control-by-MNVolkov.elf
│ │ ├── utility-navigator-Marlen-Maksumov.elf
│ │ ├── utility-vietnamese-calendar-by-ngxson.elf
│ │ ├── watchface-abstract-by-ssp1971.elf
│ │ ├── watchface-keanu-by-MNVolkov.elf
│ │ └── watchface-mickey-by-usb.elf
│ ├── font
│ │ ├── BOLD_V6.2_not_latin.ft
│ │ ├── BOLD_v4q_newsmiles.ft
│ │ └── Vietnamese_Emoji_v5.3.ft
│ ├── fw
│ │ ├── BipOS_0.5.5_b5_not_latin_1.1.2.05_ENGLISH.fw
│ │ ├── BipOS_0.5.5_b7_not_latin_1.1.2.05_ENGLISH.fw
│ │ └── BipOS_0.5.5_b7_not_latin_1.1.5.36_MULTILANG.fw
│ ├── libbip
│ │ ├── BipOS_0.5.5_b5_not_latin_1.1.2.05_ENGLISH.bin
│ │ ├── BipOS_0.5.5_b7_not_latin_1.1.2.05_ENGLISH.bin
│ │ └── BipOS_0.5.5_b7_not_latin_1.1.5.36_MULTILANG.bin
│ └── res
│ │ ├── BipOS_0.5.5_b5_not_latin_1.1.2.05_ENGLISH.res
│ │ ├── BipOS_0.5.5_b7_not_latin_1.1.2.05_ENGLISH.res
│ │ └── BipOS_0.5.5_b7_not_latin_1.1.5.36_MULTILANG.res
└── logo.png
├── scripts
└── build-files-directory.cjs
├── src
├── App.tsx
├── bootstrap.min.css
├── components
│ ├── About.tsx
│ ├── FWCredits.tsx
│ ├── FileList.tsx
│ ├── ResBuilder
│ │ ├── AppPicker.tsx
│ │ ├── ResEditor.tsx
│ │ ├── ResUtils.ts
│ │ └── index.tsx
│ └── Utils.ts
├── data
│ └── files.json
├── index.css
├── main.tsx
└── vite-env.d.ts
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | env: { browser: true, es2020: true },
4 | extends: [
5 | 'eslint:recommended',
6 | 'plugin:@typescript-eslint/recommended',
7 | 'plugin:react-hooks/recommended',
8 | ],
9 | ignorePatterns: ['dist', '.eslintrc.cjs'],
10 | parser: '@typescript-eslint/parser',
11 | plugins: ['react-refresh'],
12 | rules: {
13 | 'react-refresh/only-export-components': [
14 | 'warn',
15 | { allowConstantExport: true },
16 | ],
17 | },
18 | };
19 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
1 | [submodule "res-tools"]
2 | path = res-tools
3 | url = https://github.com/ngxson/amazfit-bip-tools-ts.git
4 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | **/.git
2 | **/.svn
3 | **/.hg
4 | **/node_modules
5 |
6 | /dist
7 | /public
8 | *.json
9 | bootstrap.min.css
10 | *.md
11 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Xuan Son Nguyen
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Amazfit Bip Firmware Tools
2 |
3 | Tools for making .res file for **Amazfit Bip** smartwatch.
4 |
5 | It is completely online, no need to download any additional tools to your computer.
6 |
7 | Website: [amazfitbip.ngxson.com](https://amazfitbip.ngxson.com)
8 |
9 | 
10 |
11 | ## Introduction
12 |
13 | NOTE: Below is a conversation between me and ChatGPT
14 |
15 | > What is Amazfit Bip? What is BipOS ?
16 |
17 | Yes, I can provide information about both Amazfit Bip and BipOS.
18 |
19 | **Amazfit Bip**
20 |
21 | The Amazfit Bip is a popular smartwatch developed by Huami, a subsidiary of Xiaomi. It's known for its long battery life, affordability, and basic but functional feature set. Here are some key features and characteristics of the Amazfit Bip:
22 |
23 | - **Display**: 1.28-inch transflective color touchscreen, which is always on and easily readable in sunlight.
24 | - **Battery Life**: Up to 30-45 days on a single charge, depending on usage.
25 | - **Sensors**: Includes GPS, heart rate monitor, accelerometer, and barometer.
26 | - **Connectivity**: Bluetooth 4.0 for connecting with smartphones.
27 | - **Water Resistance**: Rated at IP68, meaning it's dust-tight and can withstand submersion in water up to 1.5 meters for 30 minutes.
28 | - **Notifications**: Can receive notifications for calls, messages, emails, and other apps when connected to a smartphone.
29 | - **Fitness Tracking**: Supports tracking for activities such as running, walking, cycling, and more.
30 |
31 | **BipOS**
32 |
33 | BipOS is a custom operating system designed for the Amazfit Bip smartwatch. It allows users to enhance the functionality of their Amazfit Bip devices by installing additional features and apps not available in the stock firmware. Here are some aspects of BipOS:
34 |
35 | - **Customization**: Provides a high level of customization for the watch face and other UI elements.
36 | - **Extended Features**: Includes additional applications and tools such as games, calculators, and more advanced fitness tracking features.
37 | - **Community-Driven**: BipOS is often developed and maintained by a community of enthusiasts, offering a variety of mods and updates based on user feedback.
38 | - **Installation**: Typically, installing BipOS requires some technical knowledge and the willingness to tinker with the device’s firmware.
39 |
40 | The combination of Amazfit Bip's hardware and BipOS's customizable software can offer users a more personalized and feature-rich smartwatch experience.
41 |
42 | > What is amazfitbip.ngxson.com?
43 |
44 | The website "amazfitbip.ngxson.com" is an active resource that provides tools and firmware for the Amazfit Bip smartwatch. It includes various firmware files, tools for flashing the firmware, and additional resources for enhancing the smartwatch's functionality.
45 |
46 | Ngxson, the developer behind this website, also maintains a GitHub repository with several projects related to the Amazfit Bip. These projects include custom applications for BipOS, such as a metronome and beat tap app, showcasing the versatility of the smartwatch when paired with custom firmware.
47 |
48 | For more information or to explore the tools and resources provided, you can visit the [Amazfit Bip Firmware Tools site](https://amazfitbip.ngxson.com) and Ngxson's [GitHub profile](https://github.com/ngxson).
49 |
--------------------------------------------------------------------------------
/archive/myamazfit-0.en.md:
--------------------------------------------------------------------------------
1 | ---
2 | source: https://web.archive.org/web/20220517211541/https://myamazfit.ru/threads/bip-prilozhenija-dlja-bipos-elf.1174/
3 | ---
4 |
5 | > The article below is archived from "myamazfit.ru"
6 |
7 | ## 1. Calculator
8 | The "Calculator" app allows you to perform basic arithmetic operations + - * /. Deleting the last digit entered, resetting, and obtaining the answer is done by pressing the respective areas on the display, marked with the labels C = <-. Pressing the side button resets the calculator, and pressing it again exits the app. A long press on the side button also exits the app.
9 |
10 | ## 2. Calendar
11 | The "Calendar" app displays the calendar for the current month and any selected month of any year. The calendar works from the year 1600 to 3000. The day of the week calculation algorithm works for any date in the Gregorian calendar. When launched, the current month is displayed, and the current day is highlighted. The names of the months at the top of the screen are fully spelled out, unlike previous versions. You can select another month and year: swipe up/down to switch the month, and use the arrows to switch the year. Tapping the name of the month returns to the current date. You can choose from several color schemes, with the choice saved in non-volatile memory.
12 |
13 | Source code: https://github.com/MNVolkov/Calend
14 |
15 | ## 3. Alarm Editor
16 | The "Alarm Editor" app is available from the alarm settings menu. You can change the time of a selected alarm, set repetition by weekdays, or choose a one-time mode. Repetition is selected on a screen accessible by swiping left. To select the one-time mode, uncheck all the boxes. For convenience, you can set the current time by tapping the alarm icon on the time setting screen. Synchronization with MiFit only affects the on/off status (as before), without changing the time in MiFit. However, you can still set an alarm in MiFit, and it will be loaded into the watch. Alarm data on the watch is always up-to-date. Tapping the "alarm" icon sets the current time. Currently, you can only edit existing alarms, not add or delete them.
17 |
18 | For BipOS 0.5.2
19 |
20 | ## 4. Flashlight
21 | The simple "Flashlight" app is designed to illuminate things using the screen's backlight LEDs. When launched, the flashlight immediately turns on the backlight to full and fills the screen with white light. You can turn the flashlight on and off by tapping the screen. Exit the app as usual with a right swipe or the side button.
22 |
23 | Source code: https://github.com/MNVolkov/Flashlight
24 |
25 | ---
26 |
27 | ### Apps for BipOS (elf)
28 |
29 | In this topic, I suggest publishing apps for BipOS, with descriptions, screenshots, etc. Initially, we can discuss the apps here, and when the number of apps grows, we can consider moving to a different platform.
30 |
31 | **Topics related to BipOS:**
32 | - Firmware - Bip | MNVolkov BipOS
33 | - Application development for BipOS and installation instructions: Bip | BipOS Application Development (SDK)
34 | - Resource packer for adding elf-applications to the resource file.
35 | - LikeApp - Android app for installing elf-apps on the watch.
36 |
37 | **List of Apps:**
38 | 1. **Calculator** by @MNVolkov
39 | 2. **Calendar** by @MNVolkov
40 | 3. **Alarm Editor** by @MNVolkov
41 | 4. **Flashlight** by @MNVolkov
42 | 5. **Fitness Timer** by @AlexJey
43 | 6. **Music** by @MNVolkov
44 | - Mod with large buttons by @MNVolkov @trace
45 | - Mod with large buttons + ClockDateMod by @MNVolkov @trace @ugers
46 | - Mod with large buttons + StatusBar by @MNVolkov @trace @ugers
47 | 7. **Notepad** by @PRO100KBAC
48 | 8. **Heart Rate Chart (HR Chart)** by @fredlak
49 | 9. **Work Schedule (2/2, 1/3)** by @ugers
50 | 10. **SafeBox (for storing passwords, PIN codes)** by @000edu
51 | 11. **NotesBIP (Notes editor)** by @000edu
52 | 12. **Tap Counter (BipCounter)** by @erekoze @ugers
53 | - Tap Counter (BipCounter) + StatusBar by @erekoze @ugers
54 | 13. **Pulse Monitoring** by @Sanya pilot
55 | 14. **BipTask - interaction of the watch with the phone via Tasker** by @Yuukari
56 | 15. **GPS Returner** by @x27
57 | 16. **Bip Thermometer** by @erekoze
58 | 17. **simpleDND replacing the standard DND screen** by @MNVolkov
59 | 18. **Metronome** by @thichthat
60 | 19. **ExtDND DND screen with extended functions** by @thichthat
61 | 20. **BTNotes 3.0 Notes sent from the phone** by @thichthat
62 | 21. **Go Home - simplified GPS Returner analog using the compass** by @MikhailU
63 | 22. **Stopwatch** - stopwatch app with background time counting function by @MNVolkov
64 | 23. **WorldClock - world clocks** by @Comga.89
65 | 24. **WordsLearner - app for memorizing words** by @kvolodin
66 |
67 | **List of Games:**
68 | 1. **Tetris (version without vibration: NoVibration)** by @000edu
69 | 2. **FlappyBird** by @PRO100KBAC
70 | 3. **2048** by @zener79
71 | 4. **Sokoban (version without vibration: NoVibration)** by @000edu
72 | 5. **Ping-Pong** by @PRO100KBAC
73 | 6. **Breakout** by @PRO100KBAC
74 | 7. **Snake** by @PRO100KBAC
75 | 8. **Magic 8 Ball** by @erekoze
76 | 9. **FreeBip BoxPop** by @x27
77 | 10. **4 Letters** by @x27
78 | 11. **Minesweeper** by @x27
79 | 12. **Fifteen** by @x27
80 | 13. **Unblockme** by @x27
81 | 14. **Dinosaur (T-Rex)** by @Yuukari
82 |
83 | **List of Animations:**
84 | 1. **Keanu Animation (Cyberpunk 2077)** by @MNVolkov
85 | 2. **Steve WF** by @PRO100KBAC
86 | 3. **Mickey Mouse** by @usb
87 | 4. **Abstract** by @ssp1971
88 | 5. **Main menu animation in Bip 2 style** by @MNVolkov
89 |
90 | **Demo versions and apps for developers:**
91 | 1. **Random number generator demo** by @MNVolkov
92 | 2. **Own resource usage demo** by @MNVolkov
93 | 3. **Pulse Demo** by @MNVolkov
94 | 4. **BipSimulator (testing apps on PC)** by @en_rov
95 | 5. **BipUI Button Demo** by @en_rov
96 | 6. **BipUI Layers Demo** by @en_rov
97 | 7. **Bluetooth command testing** by @MNVolkov
98 | 8. **Lucky7 (random number generation from 1 to 7)** by @erekoze
99 | 9. **Navigator Demo** by @MNVolkov
100 | 10. (Please log in or register to view hidden text.)
101 | 11. **BipStatusBarLibrary (status bar library for apps)** by @ugers
102 | 12. **FastUI 1.0 beta Library for creating custom UI in apps** by @Yuukari
103 | 13. **Barcode, QR code generator (you will have to compile the app yourself)** by @kvolodin
104 |
105 | I hope this helps with your work on BipOS and the Amazfit Bip! If you have any further questions or need additional assistance, feel free to ask.
106 |
--------------------------------------------------------------------------------
/archive/myamazfit-0.ru.md:
--------------------------------------------------------------------------------
1 | ---
2 | source: https://web.archive.org/web/20220517211541/https://myamazfit.ru/threads/bip-prilozhenija-dlja-bipos-elf.1174/
3 | ---
4 |
5 | > The article below is archived from "myamazfit.ru"
6 |
7 | ## 1. Калькулятор
8 | Приложение "Калькулятор" позволяет выполнять основные арифметические операции + - * / . Удаление последней набранной цифры, сброс и получение ответа вызывается нажатием на соответствующих областях табло, обозначенных надписями C = <-. При нажатии боковой кнопки происходит сброс, при повторном выход из приложения. Долгое нажатие боковой кнопки приводит к выходу из приложения.
9 |
10 | ## 2. Календарь
11 | Приложение "Календарь" отображает календарь как на текущий месяц, так и на любой выбранный месяц любого года. Диапазон работы календаря от 1600 до 3000 года. Алгоритм вычисления дня недели работает для любой даты григорианского календаря. При запуске отображается текущий месяц, текущий день выделен цветом. Названия месяцев в верхней части экрана приведены полностью, в отличие от предыдущих версий. Возможность выбора другого месяца и года: свайп вверх/вниз для переключения месяца, стрелками переключение года. При нажатии на наименование месяца возврат к текущей дате. Возможность выбора одной из нескольких цветовых схем, с запоминанием выбора в энергонезависимой памяти.
12 |
13 |
14 | ## 3. Редактор будильников
15 | Приложение "Редактор будильников" доступно из меню установки будильников. Доступно изменение времени выбранного будильника, установка повторения по дням недели, либо выбор однократного режима. Выбор повторения осуществляется на экране доступном свайпом влево. Для выбора однократного режима необходимо снять все галочки. Для удобства можно установить текущее время нажатием на значок будильника на экране установки времени. Синхронизация с MiFit происходит только состояния вкл/выкл (как раньше), при этом время в MiFit не меняется. Однако можно по-прежнему установить будильник в MiFit и он загрузится в часы. Данные будильника в часах отображаются всегда актуальные. Нажатием значка "будильник" можно установить текущее время. Добавлять или удалять будильники пока нельзя, только редактировать существующие.
16 |
17 | Для BipOS 0.5.2
18 |
19 | ## 4. Фонарик
20 | Простое приложение "Фонарик" предназначено для освещения чего-либо светодиодами подсветки экрана. При запуске Фонарика сразу происходит включение подсветки на полную и заливка экрана белым цветом. Фонарик можно отключать и включать нажатием на экран. Выход из приложения как обычно - свайпом вправо или боковой кнопкой.
21 |
22 | ---
23 |
24 | Приложения для BipOS (elf)
25 |
26 | Предлагаю в данной теме публиковать приложения для BipOS, с описаниями, скриншотами и т.д. Обсуждение приложений для начала можно будет вести так же тут, когда количество приложений вырастет подумаем о переезде.
27 |
28 | Тема по BipsOS: Прошивка - Bip | MNVolkov BipOS
29 | Тема о разработке приложений для BipOS и инструкция по установке: Bip | Разработка приложений для BipOS ( SDK )
30 | Архиватор ресурсов для добавления elf-приложений в файл ресурсов.
31 | LikeApp - приложение на Android для установки elf-приложений в часы.
32 |
33 | Список приложений:
34 | 1. Калькулятор Автор: @MNVolkov
35 | 2. Календарь Автор: @MNVolkov
36 | 3. Редактор будильников Автор: @MNVolkov
37 | 4. Фонарик Автор: @MNVolkov
38 | 5. Фитнес-таймер Автор: @AlexJey
39 | 6. Музыка Автор: @MNVolkov
40 | > мод с большими кнопками Автор: @MNVolkov @trace
41 | > мод с большими кнопками + ClockDateMod Автор: @MNVolkov @trace @ugers
42 | > мод с большими кнопками + StatusBar Автор: @MNVolkov @trace @ugers
43 | 7. Notepad Автор: @PRO100KBAC
44 | 8. График сердечного ритма (HR Chart) Автор: @fredlak
45 | 9. График работы (2/2, 1/3) Автор: @ugers
46 | 10. SafeBox (для сохранения паролей, PIN-кодов) Автор: @000edu
47 | 11. NotesBIP (Редактор заметок) Автор: @000edu
48 | 12. Счетчик нажатий (BipCounter) Автор: @erekoze @ugers
49 | > Счетчик нажатий (BipCounter) + StatusBar Автор: @erekoze @ugers
50 | 13. Мониторинг пульса Автор: @Sanya pilot
51 | 14. BipTask - взаимодействие часов с телефоном через Tasker Автор: @Yuukari
52 | 15. GPS Returner Автор: @x27
53 | 16. Bip Термометр Автор: @erekoze
54 | 17. simpleDND замена стандартного экрана DND Автор: @MNVolkov
55 | 18. Metronome (Метроном) Автор: @thichthat
56 | 19. ExtDND Экран DND с расширенными функциями. Автор: @thichthat
57 | 20. BTNotes 3.0 Заметки, отправленные с телефона. Автор: @thichthat
58 | 21. Go Home - упрощенный аналог GPS Returner с использованием компаса. Автор: @MikhailU
59 | 22. Секундомер ⏱ - приложение секундомер с функцией фонового отсчета времени. Автор: @MNVolkov
60 | 23. WorldClock - мировые часы. Автор: @Comga.89
61 | 24. WordsLearner - приложение для запоминания слов. Автор: @kvolodin
62 |
63 | Список игр:
64 | 1. Тетрис (версия без вибрации: NoVibration) Автор: @000edu
65 | 2. FlappyBird Автор: @PRO100KBAC
66 | 3. 2048 Автор: @zener79
67 | 4. Sokoban (версия без вибрации: NoVibration) Автор: @000edu
68 | 5. Ping-Pong Автор: @PRO100KBAC
69 | 6. Breakout Автор: @PRO100KBAC
70 | 7. Snake Автор: @PRO100KBAC
71 | 8. Магический шар 8 Автор: @erekoze
72 | 9. FreeBip BoxPop Автор: @x27
73 | 10. 4 буквы Автор: @x27
74 | 11. Сапёр Автор: @x27
75 | 12. Пятнадцать Автор: @x27
76 | 13. Unblockme Автор: @x27
77 | 14. Динозаврик (T-Rex) Автор: @Yuukari
78 |
79 | Список анимации:
80 | 1. Анимация Keanu (Cyberpunk 2077) Автор: @MNVolkov
81 | 2. Steve WF Автор: @PRO100KBAC
82 | 3. Mickey mouse Автор: @usb
83 | 4. Abstract Автор: @ssp1971
84 | 5. Анимация главного меню в стиле Bip 2 Автор: @MNVolkov
85 |
86 | Демо версии и приложения для разработчиков:
87 | 1. Демонстрация генератора случайных чисел Автор: @MNVolkov
88 | 2. Демонстрация использования "собственных" ресурсов Автор: @MNVolkov
89 | 3. Пульс Демо Автор: @MNVolkov
90 | 4. BipSimulator (тестирование приложений на ПК) Автор: @en_rov
91 | 5. BipUI Демо кнопок Автор: @en_rov
92 | 6. BipUI Демо слои Автор: @en_rov
93 | 7. Тестирование bluetooth команд Автор: @MNVolkov
94 | 8. Lucky7 (генерация рандомных чисел от 1 до 7) Автор: @erekoze
95 | 9. Навигатор Демо Автор: @MNVolkov
96 | 10. (Пожалуйста войдите или зарегистрируйтесь для просмотра скрытого текста.)
97 | 11. BipStatusBarLibrary (библиотека статусбара для приложений) Автор: @ugers
98 | 12. FastUI 1.0 beta Библиотека для создания пользовательского интерфейса в приложениях. Автор: @Yuukari
99 | 13. Генератор штрих-кодов, QR-кодов (собирать приложение придется самостоятельно) Автор: @kvolodin
100 |
--------------------------------------------------------------------------------
/demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ngxson/amazfit-bip-web/74ee2ba142f88d1a7d08babe61e8ff372b431661/demo.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |