All public logs
Jump to navigation
Jump to search
Combined display of all available logs of msgwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 16:36, 6 November 2023 Walttheboss talk contribs created page Arduino/Projects/Cruise Control/Relay Control Code Sample (Created page with "int RELAY1 = 6; int RELAY2 = 7; int LED1 = 13; int LED2 = 12; int delayValue = 6000; void setup() { // put your setup code here, to run once: pinMode(RELAY1, OUTPUT); pinMode(LED1, OUTPUT); pinMode(RELAY2, OUTPUT); pinMode(LED2, OUTPUT); digitalWrite(RELAY1, HIGH); digitalWrite(RELAY2, HIGH); digitalWrite(LED1, HIGH); digitalWrite(LED2, HIGH); Serial.begin(9600); } void loop() { // put your main code here, to run rep...") Tag: Visual edit