Changeset - e9e09e0dbae7
[Not reviewed]
default
0 2 0
Ethan Zonca - 10 years ago 2014-09-11 22:22:54
ez@ethanzonca.com
Add actual SSR output support
2 files changed with 4 insertions and 0 deletions:
0 comments (0 inline, 0 general)
config.h
Show inline comments
 
@@ -15,5 +15,7 @@
 
#define SW_LEFT GPIOB, GPIO_Pin_5
 
#define SW_RIGHT GPIOB, GPIO_Pin_7
 

	
 
#define SSR_PIN GPIOC, GPIO_Pin_13
 

	
 

	
 
#endif
main.c
Show inline comments
 
@@ -260,6 +260,7 @@ void process()
 
            ssd1306_DrawString(tempstr, 2, 57);
 
 
            GPIO_SetBits(LED_STAT);
 
            GPIO_SetBits(SSR_PIN);
 
            last_ssr_on = ticks;
 
        }
 
    }
 
@@ -268,6 +269,7 @@ void process()
 
    if(ticks - last_ssr_on > ssr_output)
 
    {
 
        GPIO_ResetBits(LED_STAT);
 
        GPIO_ResetBits(SSR_PIN);
 
    }
 
}
 
0 comments (0 inline, 0 general)