10PCS IC L7812CV TO-220 Voltage Regulator 12V NEW GOOD QUALITY T27
Source: 10PCS IC L7812CV TO-220 Voltage Regulator 12V NEW GOOD QUALITY T27 | eBay
10PCS IC L7812CV TO-220 Voltage Regulator 12V NEW GOOD QUALITY T27
Source: 10PCS IC L7812CV TO-220 Voltage Regulator 12V NEW GOOD QUALITY T27 | eBay
10pcs ELNA Rfs SILMIC II 100UF 35V Audio Electrolytic Capacitor-4207
Source: 10pcs ELNA Rfs SILMIC II 100UF 35V Audio Electrolytic Capacitor-4207 | eBay
20PCS HT7536-1 SOT-89 IC good quality
TPA3116D2 2x 50W +100W 2.1 Channel Digital Subwoofer Power Amplifier Board
Source: TPA3116D2 2x 50W +100W 2.1 Channel Digital Subwoofer Power Amplifier Board | eBay
50Pcs 35V 100UF 220UF 330UF 470UF 1000UF 2200UF Electrolytic Capacitor Kit
Source: 50Pcs 35V 100UF 220UF 330UF 470UF 1000UF 2200UF Electrolytic Capacitor Kit | eBay
MHB 8 HIFI Lautsprecher 200mm 8 Ohm 100W RMS – PA Subwoofer Bass Woofer 20 cm
Source: MHB 8 HIFI Lautsprecher 200mm 8 Ohm 100W RMS – PA Subwoofer Bass Woofer 20 cm | eBay
FT232RL 3.3V 5.5V FTDI USB to TTL Serial Adapter Module for Arduino Mini Port
Source: FT232RL 3.3V 5.5V FTDI USB to TTL Serial Adapter Module for Arduino Mini Port | eBay
10 PCS NEW LNK304PN LNK304 POWER Encapsulation DIP-7
Source: 10 PCS NEW LNK304PN LNK304 POWER Encapsulation DIP-7 | eBay
ESP12F
I’m working on a PWM Routine (not finished still in progress) which did crash for some reason (code#1)
reason is that your whole routine is fully blocking for the cpu and it takes more than the watch dog permits (thus triggering soft wdt reset). The reason why it does not crash when you add delay() is that delay() actually switches the context back to the system while you are delaying and feeding the watchdog this way.
void delayMicroseconds(uint32_t us){ uint32_t start = micros(); while(micros() - start < us){} } void delay(uint32_t ms){ uint32_t start = millis(); while(millis() - start < ms){ yield();//give the system a chance to execute } }
Source: delayMicroseconds() – crash · Issue #2240 · esp8266/Arduino · GitHub
http://www.instructables.com/id/ESP8266-with-Multiple-Analog-Sensors/
http://esp8266.github.io/Arduino/versions/2.0.0/doc/reference.html