
ced06480
Membre-
Compteur de contenus
18 -
Inscription
-
Dernière visite
-
Last Connexion
Soon available - 84744
Réputation sur la communauté
0 NeutreÀ propos de ced06480
-
Rang
Membre peu actif
-
Celestron cesse toute livraison jusqu'à ce que la situation tarifaire s'éclaircisse
ced06480 a répondu à un sujet de Looney2 dans Astronomie pratique
Oui je suis entièrement d'accord je penser plus a de la revente des pièces (cellule, lame de fermeture etc...) mais bon en espérant que cette gueguere des taxes s'apaise vite sinon sa promet de beau dégâts, je ne suis pas du tout caler en économie mais je pense que les répercutions ne seront pas contenue entre les parties concernées. -
Celestron cesse toute livraison jusqu'à ce que la situation tarifaire s'éclaircisse
ced06480 a répondu à un sujet de Looney2 dans Astronomie pratique
Tout dépendras des accords .... si il y a un accord d'exclusivité sa peut ce comprendre mais je vois mal un fabriquant mettre tout ces œufs dans le même panier a l'air de la mondialisation. Synta dois forcement avoir d'autre moyen de revente de ce type de produit (peut être Meade avant leurs arrêt annoncé assez ressèment). Apres ce ne sont que des spéculations de ma part. -
ced06480 a commencé à suivre christian viladrich
-
Je vous remercie de vos corrections, je débute complètement en arduino. Je sais faire des sketch simples mais la c est un tout autre niveau. Malheureusement toujours pas de connexion au soft Windows mais toujours fonctionnel avec FC v2.6... C est assez bizarre. Je vais essayer avec un Uno r3 voir si la communication fonctionne.
-
maintenant concernant les liaison avec le PC il n'y a qua le plugin de firecapture en version 2.6 qui reçois les d'infos. les autres soft PC ne donne rien en terme de connections, est ce que vous auriez le lien de votre soft SSM que je le test sur mon montage. j'ai effectuer 3 montage différents pour contrôler les compatibilités : 1 nano Arduino officiel 2 pro micro Aliexpresse 3 en cour de montage un NAN avec écran intégré mais le résultat est le même que FC v2.6 fonction
-
merci pour les explication. en se moment j'utilise le sketch suivant qui fonction avec les ecran IIC sans modification. /* Solar Scintillation Seeing Monitor Sketch (Putative V1.0) E.J Seykora, Department of Physics, East Carolina University, Greenville, NC, USA (Original Sketch, Mode 1 output) https://www.ecu.edu/cs-cas/physics/upload/An-Inexpensive-Solar-Scintillation-Seeing-Monitor-Circuit-with-Arduino-Interface-final2.pdf (Putative V1.1) Joachim Stehle, info@jahreslauf.de (Mode 2 output, Firecapture Addin compatibility, LCD output) http://www.joachim-stehle.de/sssm_eng.html V1.2 Modifications Copyright (C) 2016 Ian Lauwerys, http://www.blackwaterskies.co.uk/ (Mode 3 output, OLED output, code refactoring) The original work ("V1.0") and modified version "V1.1" contain no copyright notices or licences and thus are copyright their respective authors. Modifications (only) in V1.2 are provided without warranty of any kind and may be used freely and for any purpose (insofar as they can be separated from the original copyrighted works). Changelog: V1.0 - Vanilla version V1.1 - Firecapture addin and LCD shield output V1.2 - Refactored code, OLED output V1.2i- Added support for I2C OLED display Features: - Reads NUM_SAMPLES of analog input readings from ADC1 and ADC2 to find 4.46 * RMS(Intensity_ADC2) / AVERAGE(Intensity_ADC1) - Mode 1: Result is sent to serial port in plain text mode - Mode 2: Result is sent to serial port in format compatible with the Firecapture addin (http://www.joachim-stehle.de/sssm_eng.html) - Mode 3: (Not available) Reserved for bidirectional communications including client side configuration changes Notes: - Use with the hardware described in the paper linked above - External Scintillation Monitor circuit gain set to 425.5X - Adjust intensity value to approximately 1.0 in by changing feedback resistor on U1 You should probably substitute a 2K variable resistor for the 220R resistor in the paper linked above to make this easier! - For more information see the following references: http://solarchatforum.com/viewtopic.php?f=9&t=16746 */ // *************************************** Begin user modifiable defines ************************************* #define NUM_SAMPLES 2000 // ** Number of samples used to find the RMS value, default 2000 for about 2 readings per second on 16MHz device, decrease to output more readings per second #define ADC1 A0 // ** Arduino analog input pin, reads intensity from LMC6484 pin 14 #define ADC2 A1 // ** Arduino analog input pin, reads variation from LMC6484 pin 8 //#define CLOUD_DISCRIMINATE true // ** Discriminate for clouds if true, default true, comment out to disable #ifdef CLOUD_DISCRIMINATE #define DISCRIMINATE_LOW 0.5 // ** Set variation value to zero if ***intensity*** is too low, default 0.5 #define DISCRIMINATE_HIGH 10.0 // ** Set variation value to zero if ***variation*** is too high, default 10 #endif #define INTENSITY_OFFSET 0.0 // ** Intensity dc offset, default 0.0, should not need to change if resistor on U1 can be adjusted to keep value between 0.5V and 1.0V #define VARIATION_OFFSET -0.05 // ** Variation dc offset, default -0.05, may need to adjust to keep variation output the the range > 0.0 and < 10.0 #define MOVING_AVERAGE_PTS 20 // ** Number of points to use for calculating the variation moving average, default 20, comment out to disable #define MODE 2 // ** Select mode as described in features above, default 2, comment out if serial output not required (e.g. stand-alone device using LED/OLED for output) #ifdef MODE #define SERIAL_RATE 115200 // ** Set the serial communications rate (9600 or 115200 are good values to try), default 115200 #endif // #define LED_OUTPUT // ** Define this to enable LED shield support, otherwise comment it out #define OLED_OUTPUT // ** Define this to enable OLED module support, otherwise comment it out // N.B. You must edit Adafruit_SSD1306.h at comment "SSD1306 Displays" to choose a display size // SSD1306_LCDWIDTH and SSD1306_LCDHeight will then be defined by the .h with display size // Current W x H options are: 128 x 64 | 128 x 32 | 96 x 16 // #define OLED_VIA_SPI // ** Define this when using the SPI version of the OLED display #define OLED_VIA_I2C // ** Define this when using the I2C version of the OLED display #ifdef OLED_OUTPUT #if defined (OLED_VIA_SPI) && defined (OLED_VIA_I2C) #error "Only one OLED output type can be defined!" #elif !defined (OLED_VIA_SPI) && !defined (OLED_VIA_I2C) #error "Either OLED_VIA_SPI or OLED_VIA_I2C must be defined!" #endif #endif #ifdef OLED_OUTPUT #ifdef OLED_VIA_SPI // #define SOFTWARE_SPI // ** Define this if your OLED module is wired to use software SPI // #define HARDWARE_SPI // ** Define this if your OLED module is wired to use hardware SPI #if defined (SOFTWARE_SPI) && defined (HARDWARE_SPI) #error "Only one OLED SPI mode can be defined!" #elif !defined (SOFTWARE_SPI) && !defined (HARDWARE_SPI) #error "An OLED SPI mode must be defined!" #endif #ifdef SOFTWARE_SPI #define OLED_MOSI 9 // ** For software SPI only, define digital pin wired to OLED MOSI #define OLED_CLK 10 // ** For software SPI only, define digital pin wired to OLED CLK (or SLCK) #endif #define OLED_RESET -1 // ** For software and hardware SPI, define digital pin wired to OLED RST (not available on my OLED module, -1 ignores) #define OLED_DC 10 // ** For software and hardware SPI, define digital pin wired to OLED DC (or D/C) #define OLED_CS 21 // ** For software and hardware SPI, define digital pin wired to OLED CS (21 is A3 on Pro Micro!) // Note that SCLK (Pro Micro pin 15) and MOSI (Pro Micro pin 16) are specific pins in hardware SPI mode so don't need defining #endif #if SSD1306_LCDHeight != 16 // Can't plot graphs on 96 x 16 screen #define IG_WIDTH 45 // ** Intensity graph width (pixels), default 45 (sized for 128 pixel wide display), comment out to hide graph #ifdef IG_WIDTH #define IG_MAX 1.5 // ** Intensity graph max plottable input value, default 1.5 #endif #define VG_WIDTH 125 // ** Variation graph width (pixels), default 125 (sized for 128 pixel wide display), comment out to hide graph #ifdef VG_WIDTH // N.B. Enabling the variation graph requires display to be taller than 16 pixels #define VG_MAX 20 // ** Variation graph max plottable input value, default 20 #endif #define SCATTER_PLOT // ** Define this to graph as a scatter plot (quicker to draw), comment out and a filled graph will be drawn #endif #endif // *************************************** End user modifiable defines *************************************** // #define DEBUG_SSM // Turn on debugging tests #define SSM_VERSION "V1.2i" // SSM sketch version number #define SSM_DATE "31 Jan 2021" // SSM sketch date // Note: Assign constants to variables so they may be changed on the fly by client software in mode 3 int sampleCount, numSamples = NUM_SAMPLES; float variationValue, intensityValue, variationOffset = VARIATION_OFFSET, intensityOffset = INTENSITY_OFFSET; #ifdef CLOUD_DISCRIMINATE float discriminateLow = DISCRIMINATE_LOW, discriminateHigh = DISCRIMINATE_HIGH; boolean cloudDiscriminate = CLOUD_DISCRIMINATE; #endif #ifdef MOVING_AVERAGE_PTS int movingAveragePts = MOVING_AVERAGE_PTS, movingAverageCount = 0; float movingAverageAcc = 0, movingAverage = 0; #endif #ifdef MODE int mode = MODE; #endif #ifdef LED_OUTPUT include <LiquidCrystal.h> // Library available in standard Arduino IDE LiquidCrystal lcd(8, 9, 4, 5, 6, 7); // Set up LCD shield #endif #ifdef OLED_OUTPUT int xPosition, yPosition, readingPosition; #include <SPI.h> // Library available in standard Arduino IDE #include <Wire.h> // Library available in standard Arduino IDE #include <Adafruit_GFX.h> // https://github.com/adafruit/Adafruit-GFX-Library/archive/master.zip #include <Adafruit_SSD1306.h> // https://github.com/adafruit/Adafruit_SSD1306/archive/master.zip #ifdef OLED_VIA_SPI #ifdef SOFTWARE_SPI Adafruit_SSD1306 display(OLED_MOSI, OLED_CLK, OLED_DC, OLED_RESET, OLED_CS); // Initialise display object #elif HARDWARE_SPI Adafruit_SSD1306 display(OLED_DC, OLED_RESET, OLED_CS); // Initialise display object #endif #endif #ifdef OLED_VIA_I2C const int SDA_PIN = SDA; // D2 - Pro Micro const int SCL_PIN = SCL; // D3 - Pro Micro #define OLED_RESET -1 // Reset pin # (or -1 if sharing Arduino reset pin) #define SCREEN_ADDRESS 0x3C //< See datasheet for Address Adafruit_SSD1306 display(SSD1306_LCDWIDTH, SSD1306_LCDHEIGHT, &Wire, OLED_RESET); // Initialise display object #endif #ifdef IG_WIDTH int intensityBuffer[IG_WIDTH] = { 0 }, // Buffer to hold scaled and bounded intensity readings intensityOldest = 2; // Current position of oldest (left hand of graph) entry in intensity buffer #define IG_HEIGHT 13 // Intensity graph height (pixels) - 1, default 13 #define IG_SCALE (IG_HEIGHT / IG_MAX) // Intensity graph scale #endif #ifdef VG_WIDTH int variationBuffer[VG_WIDTH] = { 0 }, // Buffer to hold scaled and bounded variation readings variationOldest = 0; // Current position of oldest (left hand of graph) entry in variation buffer #if SSD1306_LCDHEIGHT == 64 #define VG_HEIGHT 45 // Variation graph height (pixels) - 1, default 45px for 64px high display #elif SSD1306_LCDHEIGHT == 32 #define VG_HEIGHT 13 // Variation graph height (pixels) - 1, default 15px for 32px high display #else #error "Unsupported display size!" // Couldn't find a supported display size #endif #define VG_SCALE (VG_HEIGHT / VG_MAX) // Variation graph scale #endif #endif void setup() { #ifdef MODE Serial.begin(115200); // Initialise serial communications first in case we need to debug anything #endif #ifdef LED_OUTPUT lcd.begin(16, 2); // Initialise LCD shield #endif #ifdef OLED_OUTPUT delay(2000); // Wait a bit for the display to initialise on first power up, otherwise we may get a blank screen instead of output #ifdef OLED_VIA_SPI display.begin(SSD1306_SWITCHCAPVCC); // Generate high voltage. #else display.begin(SSD1306_SWITCHCAPVCC, SCREEN_ADDRESS); #endif #define SSM_LOGO_WIDTH 56 // SSM splash screen logo width #define SSM_LOGO_HEIGHT 16 // SSM splash screen logo height static const unsigned char PROGMEM SSM_LOGO [] = { // SSM Splash screen logo 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x0F, 0x80, 0x7E, 0x0E, 0x07, 0x31, 0x8C, 0x3F, 0xE1, 0xFF, 0x0F, 0x0F, 0x3B, 0xDC, 0x70, 0x63, 0x83, 0x0F, 0x0F, 0x1F, 0xF8, 0x60, 0x03, 0x00, 0x0D, 0x9B, 0x1E, 0x78, 0x60, 0x03, 0x00, 0x0D, 0x9B, 0x0C, 0x30, 0x70, 0x03, 0x80, 0x0D, 0x9B, 0x3C, 0x3C, 0x3F, 0x81, 0xFC, 0x0C, 0xF3, 0xFC, 0x3F, 0x0F, 0xE0, 0x7F, 0x0C, 0xF3, 0x7E, 0x7E, 0x00, 0x70, 0x03, 0x8C, 0x63, 0x07, 0xE0, 0x00, 0x30, 0x01, 0x8C, 0x63, 0x07, 0xE0, 0x00, 0x30, 0x01, 0x8C, 0x03, 0x0E, 0x70, 0x60, 0x73, 0x03, 0x8C, 0x03, 0x0C, 0x30, 0x7F, 0xE3, 0xFF, 0x0C, 0x03, 0x0C, 0x30, 0x1F, 0x80, 0xFC, 0x0C, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; display.clearDisplay(); // Clear display display.drawBitmap(0, 0, SSM_LOGO, SSM_LOGO_WIDTH, SSM_LOGO_HEIGHT, 1); // Draw splash screen logo display.setTextSize(1); display.setTextColor(WHITE); display.setTextWrap(false); display.setCursor(SSM_LOGO_WIDTH + 6, 0); // Draw splash screen sketch version display.print(SSM_VERSION); #if SSD1306_LCDWIDTH == 128 #ifdef MODE display.print(" Mode "); // Draw splash screen mode if applicable display.print(MODE); #endif display.setCursor(SSM_LOGO_WIDTH + 6 , 8); // Draw splash screen sketch date display.print(SSM_DATE); #endif display.display(); // Show splash screen delay(2000); display.clearDisplay(); // Clear display display.display(); // Show cleared display #endif } void loop() { variationValue = intensityValue = 0; // Reset variation and intensity samples for (sampleCount = 0; sampleCount < numSamples; sampleCount++) // Collect samples from the SSM { intensityValue = intensityValue + (analogRead(ADC1) - 511.) * 2.5 / 511.; // Accumulate average solar intensity sample variationValue = variationValue + sq((analogRead(ADC2) - 511.) * 2.5 / 511.); // Accumulate RMS variation sample } intensityValue = intensityValue / numSamples + intensityOffset; // Find average solar intensity, +/– dc offset variationValue = (4.46 * sqrt(variationValue / numSamples) + variationOffset) / intensityValue; // Find RMS variation, +/– small dc offset, normalised for intensity #ifdef MOVING_AVERAGE_PTS movingAverageAcc = movingAverageAcc + variationValue; // Add the current variation to the moving average accumulator if (movingAverageCount = movingAveragePts) { movingAverageAcc = movingAverageAcc - movingAverage; // Deduct the previous moving average from the accumulator movingAverage = movingAverageAcc / movingAveragePts; // Calculate the new moving average } else { movingAverageCount++; // Not enough data points yet, so keep accumulating } #endif #ifdef CLOUD_DISCRIMINATE if (cloudDiscriminate && (intensityValue < discriminateLow || variationValue > discriminateHigh)) { variationValue = 0; // Discriminate for clouds by setting variation value to zero } #endif // http://www.daycounter.com/LabBook/Moving-Average.phtml #ifdef LED_OUTPUT // Output to LED shield lcd.setCursor(0, 1); lcd.print("Input: "); lcd.setCursor(8, 1); lcd.print(intensityValue, 2); lcd.setCursor(0, 0); lcd.print("Seeing: "); lcd.setCursor(8, 0); lcd.print(variationValue, 2); #endif #ifdef OLED_OUTPUT // Output to OLED module display.clearDisplay(); // Clear display display.setTextSize(1); display.setTextColor(WHITE); display.setCursor(0, 0); // Draw seeing value display.print("Seeing: "); display.print(variationValue, 2); display.setCursor(0 , 8); // Draw intensity value display.print("Input: "); display.print(intensityValue, 2); #ifdef IG_WIDTH intensityBuffer[intensityOldest] = min(IG_HEIGHT, max(0, (int) round(intensityValue * IG_SCALE))); // Buffer scaled and bounded intensity reading intensityOldest = (intensityOldest + 1) % IG_WIDTH; // Increment left hand of graph, wrap over at end of buffer // Draw intensity graph axes display.drawFastHLine(82, IG_HEIGHT, IG_WIDTH + 1, WHITE); // X axis display.drawFastVLine(82, 0, IG_HEIGHT, WHITE); // Y axis display.drawFastHLine(80, IG_HEIGHT - (int) round(IG_SCALE), 2, WHITE); // Y axis "1" marker if (intensityValue > (IG_MAX)) { display.setCursor(84, 0); display.print("HIGH"); // Print "HIGH" instead of graph } else if (intensityValue < 0) { display.setCursor(84, 0); display.print("LOW"); // Print "LOW" instead of graph } else { readingPosition = intensityOldest; // Start with the oldest intensity reading for (xPosition = 83; xPosition < (82 + IG_WIDTH); xPosition++) // Plot intensity readings from left to right of graph { #ifdef SCATTER_PLOT display.drawPixel(xPosition, IG_HEIGHT - intensityBuffer[readingPosition], WHITE); // Draw point #else display.drawFastVLine(xPosition, IG_HEIGHT - intensityBuffer[readingPosition], intensityBuffer[readingPosition], WHITE); // Draw vertical bar #endif readingPosition = (readingPosition + 1) % IG_WIDTH; // Move to next reading, wrap over at end of buffer } } #ifdef DEBUG_SSM // Test Intensity graph plot area limits display.drawLine(83, IG_HEIGHT - min(IG_HEIGHT, max(0, (int) round(IG_MAX * IG_SCALE))), (82 + IG_WIDTH), min(IG_HEIGHT, max(0, (int) round(IG_MAX * IG_SCALE))), INVERSE); // Top left -> bottom right Serial.print("IG Top Left X: "); Serial.println(83); Serial.print("IG Top Left Y: "); Serial.println(IG_HEIGHT - min(IG_HEIGHT, max(0, (int) round(IG_MAX * IG_SCALE)))); Serial.print("IG Bottom Right X: "); Serial.println((82 + IG_WIDTH)); Serial.print("IG Bottom Right Y: "); Serial.println(min(IG_HEIGHT, max(0, (int) round(IG_MAX * IG_SCALE)))); #endif #endif #ifdef VG_WIDTH variationBuffer[variationOldest] = min(VG_HEIGHT, max(0, (int) round(variationValue * VG_SCALE))); // Buffer scaled and bounded variation reading variationOldest = (variationOldest + 1) % VG_WIDTH; // Increment left hand of graph, wrap over at end of buffer // Draw variation graph axes display.drawFastHLine(3, VG_HEIGHT + 18, VG_WIDTH + 1, WHITE); // X axis display.drawFastVLine(3, 17, VG_HEIGHT + 1, WHITE); // Y axis #ifdef MOVING_AVERAGE_PTS if (movingAverageCount = movingAveragePts) { display.drawFastHLine(0, min(VG_HEIGHT, max(0, (int) round(movingAverage * VG_SCALE))) + 17, 2, WHITE); // Moving average marker } #endif // Plot variation graph readingPosition = variationOldest; // Start with the oldest variation reading for (xPosition = 3; xPosition < (2 + VG_WIDTH); xPosition++) // Plot variation readings from left to right of graph { #ifdef SCATTER_PLOT display.drawPixel(xPosition, VG_HEIGHT - variationBuffer[readingPosition] + 17, WHITE); // Draw point #else display.drawFastVLine(xPosition, VG_HEIGHT - variationBuffer[readingPosition] + 17, variationBuffer[readingPosition], WHITE); // Draw vertical bar #endif readingPosition = (readingPosition + 1) % VG_WIDTH; // Move to next reading, wrap over at end of buffer } #endif #ifdef DEBUG_SSM // Test Variation graph plot area limits display.drawLine(3, VG_HEIGHT - min(VG_HEIGHT, max(0, (int) round(VG_MAX * VG_SCALE))) + 17, (2 + VG_WIDTH), min(VG_HEIGHT, max(0, (int) round(VG_MAX * VG_SCALE))) + 17, INVERSE); // Top left -> bottom right Serial.print("VG Top Left X: "); Serial.println(3); Serial.print("VG Top Left Y: "); Serial.println(VG_HEIGHT - min(VG_HEIGHT, max(0, (int) round(VG_MAX * VG_SCALE))) + 17); Serial.print("VG Bottom Right X: "); Serial.println((2 + VG_WIDTH)); Serial.print("VG Bottom Right Y: "); Serial.println(max(0, (int) round(VG_MAX * VG_SCALE)) + 17); #endif display.display(); // Show results #endif #ifdef MODE // Output to serial port in desired mode switch(mode) { case 1 : // Basic text output Serial.print("Intensity: "); Serial.println(intensityValue, 2); Serial.print("Variation: "); Serial.println(variationValue, 2); break; case 2 : // Firecapture addin compatible Serial.print("A0: "); Serial.println(intensityValue, 2); Serial.print("A1: "); Serial.println(variationValue, 2); break; case 3 : // FIXME: Bidirectional comms, need to read commands and send data Serial.println("Mode 3 not implemented yet!"); break; default : // Incorrect mode set Serial.println("Invalid output mode selected!"); } #endif }
-
Je me permet de remonter le post pour un e question technique, j'ai aussi fais un sssm mais je n'ai pas de connexion avec le soft Windows par contre avec le plugin de fire capture il fonctionne sans aucun soucis. est ce que dans le sketch il y a une petite ligne cacher que j 'aurai loupé??
-
-
Bonjour a tous, je me permet de remonter ce poste pour avoir une aide sur ce montage. pour être franc avec vous je suis totalement novice en Arduino (je sais faire clignoter une led ou autre action simple...) je me heurte a 3 problématiques : la première est que le sketch ne se lance pas sauf si je lance le moniteur dans IDE la seconde est que je n'arrive pas a faire de remonter sur les écrans Oled (j'ai tester avec deux version) sur un code classique pas de soucis mais dans ce code je me perd littéralement le troisième qui doit être lier au premier si je connecte le sssm au soft Windows je n'ai pas de remonter de valeur car le sketch ne se lance pas. Auriez vous des conseils a me donner? la ref du materiel : https://fr.aliexpress.com/item/1005006426010899.html?spm=a2g0o.order_list.order_list_main.59.2bc45e5bJ9Mqci&gatewayAdapt=glo2fra https://www.amazon.fr/gp/product/B07Z8XX6KB/ref=ppx_yo_dt_b_asin_title_o05_s00?ie=UTF8&psc=1 https://fr.aliexpress.com/item/1005004355547926.html?spm=a2g0o.order_list.order_list_main.5.2bc45e5bJ9Mqci&gatewayAdapt=glo2fra Cedric
-
je suis sur une bague de 11mm et mon BF sur le 6D2 est de 44mm donc je suis censé etre bon car au centre je n'ai pas de déformation. c'est vraiment dans les bords aux angles. Apres je suis tomé sur une video pour du traitement sous Pi et la personne qui faisait la demo disait que sont FWHM ce situer au alentour de 5" du a l'APN. Du coup je ne sais plus trop quoi penser. je vais déjà enlever le correcteur dans un 1er temps.
-
HDF en "/arcs
-
c'est grace a ursus et un collegue d'un groupe que je suis preque sur que mon correcteur est trop eloigné. il me reste 2 solution : -passer la bague T2 sur une bande abrasive pour enlever la distance en trop -prendre une bague T2 de 9mm et mettre des bagues entre la bague et le correcteur pour trouver la bonne distance.
-
petit lien que j'ai en complement. https://www.webastro.net/forums/topic/175596-aide-au-reglage-du-back-focus/?fbclid=IwAR2OU_Oi5zAI9rRybrCIWQ9Nm3RoPLYYBPdI93Lhc5zo9NXpsl0BD-l8dGM
-
je suis sous zwo ASI Air le module focus mesure le HDF mais je ne sais pas si elle est en pix ou "/arcs, pour la mise au point le temps d'expos et de 0,5s et je descend a 1,8 à 2,4 HDF. pour le HDF je me renseigne pour te dire si il est en Pixel ou "/arcs. -merci pour la piste du Primaire, je n'ai verifié ce point. -pour tester le correcteur j'attend d'avoir un soirée sans nuages...... -non je n'ai pas d'Ir cut, si je doit en mettre ce filtre et que je le met devant mon correcteur je doit appliquer 1/3 de son epaisseur en BF si je me souviens bien.
-
et juste pour compléter l'info sur un forum anglais j'ai trouvé un complément de réponse, avec une distorsion (en forme de courbure de champ) peut etre dut aussi au faite que le capteur soit un peut trop loin du correcteur.
-
oui je voulais poster ici les aides apporter chez WA pour que tout le monde en profite mais tu m'as devancé!!
-
Bonjour à tous, j'ai déjà édite le même poste sur le forum dans la section astrophoto mais on m'a conseil de le republié ici pour que les pros voient le poste (je m'w'excuse donc du doublon). Comme la part d'entres vous quand en commence a progressé on va scruter les details que jusque l'a on a laissé de côté le temps des débutes. Aujourd'hui je commence a regarde le FWHM et je me rend compte que depuis le début mes brutes oscillent sous siril entre 4.3-6.00"/arcs et sous Iris FWHM X de 2.80 a 4 et en Y 2.3 a 3.6 pixels. le matériel sw 200/800 correcteur de coma F4 sw 6d2 (6.54 ou 6.75µ en fonction des sites...) mon échantillonnage 1.74 ASI385MC (3.75µ) mon échantillonnage 0.97 EQ-6R pro Lunette de guidage 60/240 avec asi120mm Mon suivi vacille entre 0.45 a 0.95 RMS total J'ai recollimaté mon tube au Cheshire et au laser pour affiner avec une versification sur une étoile, RAS; J'ai utilise 2 techniques et de logiciel différent pour la map contrôler : sharpcap avec masque de bathinov et avec le fwhm a 1.8-2.2 et sous l'asiair avec HDF 2.3 et le résultat est sans appel quelque soit la caméra j'ai systématiquement un FWHM de 4-6"/ars en fonction de l'étoile. Exif 60s a 640 iso très légère brise Sous Siril, image du 6D Sous Iris image du 6D Qu'est ce que je n'ai pas vérifier ou que j'ai mal compris? ou comment je pourrai améliorer le FWHM? Mon but est de descendre le FWHM de siril vers 3.2"/arc et sous iris un FWHM x/y autour de 1.8 pixels