-
Notifications
You must be signed in to change notification settings - Fork 100
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
Update for GoPro HERO 2018 model #34
base: master
Are you sure you want to change the base?
Conversation
GoPro HERO 2018 (entry-level model) has a `firmware_version` str as `H18.01.01.00.00`. As it is a single `H` letter, we cannot use `"Hxx" in response` method anymore. Therefore I've changed it to regexp and exact comparisons.
Code is not working as intented.
model = HD not HD5. |
Do you think then that model/identifier for HERO 2018 is simply a part preceding the dot i.e. |
model designator for HERO 2018 is H18. reduced detecting `HD3.2` to `HD3`
added HERO 2018 to 'supported cameras'
Fixes for HERO 2018
Well, the problem is HD3 is also HERO3 which is not compatible, so the regex needs to include model == HD3.22 |
And exclude HD3 ? Do you allow for such a bodge ? To include HD3.22 but not HD3 ? |
Yeah, HD3.22 are the HERO+ line that use udp. |
Do you have an example of HD3.22's |
Yup should be. Check goprowifihack for examples. Should be in the HERO folder. |
Just for the record it is HD3.22.01.50. I cannot make sense of those firmware strings to be spliced reliably. Could we transition to model numbers directly..? It seems to be omnipresent across all the models.. By the way is HERO+ LCD supported ? EDIT: I can actually make sense, but it starts to be bodgy. If there are 3 groups of numbers, then first group is important. If there are 4, then they are not important.. For now, for those HD3 / HD3.22, HDx. |
GoPro HERO 2018 (entry-level model) has a
firmware_version
stringH18.01.01.00.00
. As it is a singleH
letter, we cannot use"Hxx" in response
method anymore as it would be too inclusive. Therefore I've changed it to regexp and exact comparisons.