Jump to content

Banner.jpg.b89429c566825f6ab32bcafbada449c9.jpg

Yoddha

Members
  • Posts

    1,790
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Yoddha

  1. APT DC is updated to 1.8. Fixes the calculations in the Daylight Saving period.
  2. APT DC was updated to version 1.7 2019/01/02 - v1.7 Upgrade -Added support for Android 9 -Added better location coordinates detecting -Updated design More info and links at: https://www.ideiki.com/astro/MobileApps.aspx
  3. Interesting idea! We will explore it for the desktop application first
  4. Hi Neil, It is matter of taste I prefer to use other forecast and this app fits my needs to check if particular night has enough time for imaging Also it was fun to build it (in fact my wife made the Android version, I built the iOS). It is absolutely free - no ads, no tracking or marketing data gathering. If it is useful for somebody - great! If it is not - nothing bad is happening It is a gift for the community - wanted or unwanted BTW I also use it for a fast way to see my GPS coordinates
  5. Hello, The Moon is big now and there is no absolute darkness... Could you try to change the date using Prev/Next or by tapping on the date?
  6. It has iOS version too The Android version was released first and that is the reason to have two topic here...
  7. APT DC was just updated 2018/08/05 - v1.6 Upgrade -Added better location coordinates detecting More info and links at: https://www.ideiki.com/astro/MobileApps.aspx
  8. APT DC was updated to 1.5 and now supports Androids back to 4.0.3 (Ice Cream Sandwich)
  9. APT DC (Android and iOS) was updated to show the moon phase More info and links at: https://www.ideiki.com/astro/MobileApps.aspx
  10. Hello, There is one more update that fixes rare bug in calculating Moon rise time in particular situation. The iOS version in final tests phase
  11. Hello, There is an update of APT DC What's New 2018/01/31 - v1.1 New features and more - Added possibility to use the app on devices without GPS - Added possibility to copy the current coordinates as stored location - Added possibility to grant GPS access from the app, no need to go to the applications settings - Reduced messages for getting the GPS coordinates - Removed unused permission requirement for “full network access” - Fixed a spelling error - Optimizations here and there https://www.ideiki.com/astro/MobileApps.aspx
  12. Hi Frank, Thank you for the feedback! A full port of APT to mobile platform is not possible, however some alternatives are considered in a bit longer term
  13. Many thanks! All times are local. APT DC takes the time zone from the phone. What is Full ADT? The DSD is taking into account the Moon...
  14. Hi David, Could you make a screenshot (usually by holding Power and Volume Down buttons pressed in same time) and take a look which version of Android is running on your A5?
  15. Hi David, Many thanks! We will try to make a simulation for A5. On the test Moto here it is working!?!? Does it behaves same for all 3 locations? ( Just to exclude copy-paste error )
  16. Cheers! You are getting virtual beer Please share feedback!
  17. Hello, We have just released our first mobile app - APT Darkness Clock (APT DC) which allow to calculate the Deep Sky Darkness (DSD) time for selected night. For link and QR code take a look here: https://www.ideiki.com/astro/MobileApps.aspx Or navigate directly here: https://play.google.com/store/apps/details?id=eu.distinct_solutions.aptcalc Hope you will find the app useful
  18. David, take a look on the LiveView parameters in the camera menu. If Face detection is enabled then there is no Zoom
  19. Don't get me wrong I don't say that there is no need to implement the compensation in the controller/driver... Just if the imaging application is capable I would use it... BTW keep in mind that optics are inert and react relatively slow to the temperature changes. Wind gust will give rapid changes of the temperature reading, but this doesn't mean that focus is changing. A good approach is to average the readings for certain period and then to decide if there is need to change the focus
  20. Thanks Mick! As I know all focusers that has temperature sensor are offering in driver/controller temperature compensation, but my opinion is that the right place is in the imaging application, because the action can be made between the exposures
  21. Just the memory address you will use will fail
  22. There is one more approach. On address PosOffset in the EEPROM are reserved 2 bytes. They keep the memory address where the position is stored. So when you need to store the position it uses the address, writes the value, then reads it back and if it is no the same, then increase the address PosOffset with two more bytes and start to use a new cell Here is my code: void WritePosition(unsigned int Value) { unsigned int Address = ReadTwoBytes(PosOffset); WriteTwoBytes(Address, Value); if(Value != ReadTwoBytes(Address)) { WriteTwoBytes(PosOffset, Address+2); WriteTwoBytes(Address, Value); } } So It is important to place the first PosOffset to point after all other stored variables in order to be able to use the rest of the EEPROM. Also you can increase the life of the cells by using timer that is started on button press and when the button is released to store the position just once
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. By using this site, you agree to our Terms of Use.