WDT now available?
- 
					
					
					
					
 Re: Watchdog Using 1.6.5.b1 - WDT doesn't seem to exist: >>> import machine >>> wdt = WDT(timeout=10000) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'WDT' is not defined >>>
 
- 
					
					
					
					
 @pchirouze 
 no, it should be:
 https://docs.pycom.io/pycom_esp32/library/machine.WDT.html
 
- 
					
					
					
					
 Hi, 
 WDT seems to exist only on WIPY 1.
 
- 
					
					
					
					
 @lcgeldenhuys said in WDT now available?: if you import namespace not class from it you must prefix it with namespace name: wdt = machine.WDT(timeout=10000)if you like to use it without prefix use: from machine import WDT
 
