Sorry for the late reply, I was extremely busy. Yes, you can use bigger value for C13, but rated at minimum 250V!
You only need to disable "led toggling" in interrupt routine.
Here is the original code (find it in wt2.c):
Code: Select all
// Syncrhonized toggling of dots and LEDs
if( RTC[TIME_S] % 2 && !bv(AutoOffed,BSYS) ) // dont work LEDs while auto-offed
{
if( bv(ToggleLEDs,BAPP1) && bv(LEDtoggling,BUSR1) )
{
rgb_led(0,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
rgb_led(1,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
rgb_led(2,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
rgb_led(3,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
}
if( bv(ToggleColons,BAPP1) )
{
set1(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN);
set1(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN);
}
}
else
{
if( bv(ToggleLEDs,BAPP1) && bv(LEDtoggling,BUSR1) )
{
rgb_led(0,0,0,0);
rgb_led(1,0,0,0);
rgb_led(2,0,0,0);
rgb_led(3,0,0,0);
}
if( bv(ToggleColons,BAPP1) )
{
// if 12hr mode is used, we should report it by leaving one nixie dot ON
// for PM we blink the lower nixie dot
if( bv(RTC_12hr,BUSR1) && temp_hours>=12 )
{
set0(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN); // it is PM, so blink lower one
}
// 12hr mode is used, and it is AM
else if( bv(RTC_12hr,BUSR1) )
{
set0(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN); // it is AM, so blink the upper one
}
// 24hr mode is used, so turn them both off so they both blink
else
{
set0(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN);
set0(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN);
}
/*
// now there is no way of knowing when snooze is active...
// keep the upper dot ON while snooze is active!
if( !bv(RTC_Snoozing,BAPP1) )
{
set0(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN); // snooze not active, so turn this one off also so it actually blinks
}
set0(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN); // the bottom one will be blinking...
*/
}
}
Replace it with this code and try (I didn't test it):
Code: Select all
// Syncrhonized toggling of dots and LEDs
if( RTC[TIME_S] % 2 && !bv(AutoOffed,BSYS) ) // dont work LEDs while auto-offed
{
if( bv(ToggleLEDs,BAPP1) && bv(LEDtoggling,BUSR1) )
{
rgb_led(0,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
rgb_led(1,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
rgb_led(2,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
rgb_led(3,rgb_time_color[0],rgb_time_color[1],rgb_time_color[2]);
}
// added on 2015-12-17
if( bv(ToggleLEDs,BAPP1) && !bv(LEDtoggling,BUSR1) )
{
rgb_led(0,0,0,0);
rgb_led(1,0,0,0);
rgb_led(2,0,0,0);
rgb_led(3,0,0,0);
}
if( bv(ToggleColons,BAPP1) )
{
set1(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN);
set1(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN);
}
}
else
{
// commented on 2015-12-17
/*if( bv(ToggleLEDs,BAPP1) && bv(LEDtoggling,BUSR1) )
{
rgb_led(0,0,0,0);
rgb_led(1,0,0,0);
rgb_led(2,0,0,0);
rgb_led(3,0,0,0);
}*/
if( bv(ToggleColons,BAPP1) )
{
// if 12hr mode is used, we should report it by leaving one nixie dot ON
// for PM we blink the lower nixie dot
if( bv(RTC_12hr,BUSR1) && temp_hours>=12 )
{
set0(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN); // it is PM, so blink lower one
}
// 12hr mode is used, and it is AM
else if( bv(RTC_12hr,BUSR1) )
{
set0(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN); // it is AM, so blink the upper one
}
// 24hr mode is used, so turn them both off so they both blink
else
{
set0(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN);
set0(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN);
}
/*
// now there is no way of knowing when snooze is active...
// keep the upper dot ON while snooze is active!
if( !bv(RTC_Snoozing,BAPP1) )
{
set0(NIXIE_UDOT_PORT,NIXIE_UDOT_PIN); // snooze not active, so turn this one off also so it actually blinks
}
set0(NIXIE_LDOT_PORT,NIXIE_LDOT_PIN); // the bottom one will be blinking...
*/
}
}