-
-
Notifications
You must be signed in to change notification settings - Fork 1
Add BLE support #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add BLE support #46
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8c425b4
Fix quotes and add debounced text field
heavyrubberslave 61d405e
Make double quotes report as error
heavyrubberslave da50c69
wip, but commands to devices get lost?
heavyrubberslave 7d06840
Airotic control panel
heavyrubberslave edc7d13
Merge branch 'main' into feat/ble-support
heavyrubberslave 3d34a5a
Remove unused import
heavyrubberslave 1875aba
Update types for automation script
heavyrubberslave 3d115f4
wip
heavyrubberslave 013faa3
Improved typing of socket and AiroticControl improvements
heavyrubberslave 59f542f
Correctly display airotic device with bpm and trend
heavyrubberslave eeb38f4
Nicer control design for airotic
heavyrubberslave b5be4b7
Review findinds - part 1
heavyrubberslave 5001019
Review findings - part 2
heavyrubberslave File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| // https://docs.cypress.io/api/introduction/api.html | ||
|
|
||
| describe("My First Test", () => { | ||
| it("visits the app root url", () => { | ||
| cy.visit("/"); | ||
| cy.contains("h1", "You did it!"); | ||
| describe('My First Test', () => { | ||
| it('visits the app root url', () => { | ||
| cy.visit('/'); | ||
| cy.contains('h1', 'You did it!'); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| import { describe, it, expect } from "vitest"; | ||
| import { describe, it, expect } from 'vitest'; | ||
|
|
||
| import { mount } from "@vue/test-utils"; | ||
| import HelloWorld from "../HelloWorld.vue"; | ||
| import { mount } from '@vue/test-utils'; | ||
| import HelloWorld from '../HelloWorld.vue'; | ||
|
|
||
| describe("HelloWorld", () => { | ||
| it("renders properly", () => { | ||
| const wrapper = mount(HelloWorld, { props: { msg: "Hello Vitest" } }); | ||
| expect(wrapper.text()).toContain("Hello Vitest"); | ||
| describe('HelloWorld', () => { | ||
| it('renders properly', () => { | ||
| const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }); | ||
| expect(wrapper.text()).toContain('Hello Vitest'); | ||
| }); | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.