0 Members and 55 Guests are viewing this topic.
Also I'm not sure which pins I should use with a SSD1306 I2C :Code: [Select]#define I2C_SDA PD0 /* port pin used for SDA */#define I2C_SCL PD1 /* port pin used for SCL */If I understand correctly, PD0, PD1 are used for the UART interface on an Arduino Uno.
#define I2C_SDA PD0 /* port pin used for SDA */#define I2C_SCL PD1 /* port pin used for SCL */
In continuous mode a short button press will skip any delay. Two short button presses trigger the main menu, and a long button press will power off the tester. So we would need something else. Any suggestion?
@madires:Can you add a 'hold' function (button press) for 'continuous mode' so we have time to write down values? On problematic PCBs (covered in collophonium) the continuous mode is better/faster. Generally, i prefer auto-hold mode though.
What about this:- Add an option in 'config.h' to enable 'short press' for pause/freeze so rotary controller users can have both functions (short press=pause and rotate right=skip). One-button device users can also use this (but obviously lack 'rotate right'). They could decide to pick a short auto-continue time or keep the old behavior.
And don't forget the external pull-up resistors for I2C.
Another option would be an 'auto-hold on success' where 'success' is true by either a found semiconductor or predefined threshold (lowcut) for caps (>30pF) and R (>30 Ohm). That would cover the idle range (impact) when holding cables.
Like to change 'fake' Chinese IC part for genuine "Mega328P U-TH" on device "LCR-T4" = possible?
I bought a GM328A tester from AliExpress ...Anyone has a working English flash, hex file for this latest version tester?
Have you done the self-adjustment?
Make sure to choose a clone with a genuine ATmega. Currently many clones are sold with APT32F172K8T6 or LGT8F328.
How do you find that out? Reading the description of the products does't mention anything about what chip they come with :/
We have seen popular clones sold in multiple variants with genuine ATmegas andalternative MCUs, some even with fake ATmega markings. When buying a clone itcan be hard to identify the MCU. Some hints:- MCU in DIP is usually an genuine ATmega.- APT32F172K8T6 has different power pins: - 32-LQFP/QFN: 18=Vss, 19=Vdd (ATmega328 32-TQFP: 5=Gnd, 4=Vcc)- APT32F172K8T6 uses SWD port for ISP: - 5 pins: Vdd, Vcc, F_SDAT, F_SCLK, F_RST- Testers with APT32F172K8T6 often lack a quartz crystal.- LGT8F328 has slightly different pins: - QFP32L: 21=PE2/SWD (ATmega328 32-TQFP: 21=Gnd)- LGT8F328 uses SWD port for ISP: - 5 pins: Gnd, Vcc, SWD, SWC, Reset- Clone variants with an genuine ATmega are usually about EUR/US$ 5 more expensive than the variant with a different MCU.