-
Notifications
You must be signed in to change notification settings - Fork 67
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
[Request] Validate usage of SunPosition.isSunsetAvailable() #1407
Comments
there is a already a comment in SunPosition.cpp Wouldn‘t that be sufficient ? If sunrise / sunset calculation fails, eg. too far north / south the sunset functionality is not available. |
The problem is that this comment is not on the getter and thats also the reason why i interpreted the result wrong. |
Agreed, how do we document such details normally, do we use some kind of documentation automation like doxygen ? |
Do you guys use vscode? If so you could use jsdoc to give the function a proper description and explanation which should be shown by intellisense whenever you use the function https://dev.to/sumansarkar/how-to-use-jsdoc-annotations-with-vscode-for-intellisense-7co |
@spcqike sounds like a good plan for the Vue.js code of the Web App. We could use JSDoc for the Web App and Doxygen for the C++ code. Here is a Stack Overflow Entry to use Doxygen for both Generate JavaScript documentation with Doxygen @AndreasBoehm sorry to sort of high-jack your issue for enhancing the documentation / auto-generate docs: I have also tried to write an Swagger / OpenAPI specification for OpenDTU in tbnobody#2410 It would be great if we could auto-generate these API specs from the REST API inline documentation too. |
Is your feature request related to a problem? Please describe.
When i implemented the use of
SunPosition.isSunsetAvailable()
I assumed that this reports if the time of the ESP was set and is able to report day/night.As it turns out this actually reports if sunset is a thing in the current timezone or if it never gets dark during the 'night'.
Describe the solution you'd like
SunPosition.isSunsetAvailable()
actually returns.SunPosition.isSunsetAvailable()
and make sure its correctly used.Describe alternatives you've considered
No response
Additional context
Thomas explained pretty well what this method actually tells us: tbnobody#2198 (comment)
The text was updated successfully, but these errors were encountered: