You are reading a single comment by @opichals and its replies. Click here to read the full conversation.
  • So I managed to resurrect the Espruino board with serialflash.

    However I didn't have much luck so far with the current master. I tried using 3.3V as well as with level shifters to 5V (according to the shield spec).

    >var eth = require("WIZnet").connect();
    =Ethernet {  }
    >eth.getIP()
    ={
      "ip": "0.0.0.0",
      "subnet": "0.0.0.0",
      "gateway": "0.0.0.0",
      "dns": "0.0.0.0",
      "mac": "00:00:00:00:00:00"
     }
    >eth.setIP({ "ip": "10.0.5.3", "subnet": "255.255.255.0",
    : "gateway": "10.0.5.1", "dns": "8.8.8.8", "mac": "aa:bb:cc:dd:ee:ff"
    : });
    =true
    >eth.getIP()
    ={
      "ip": "0.0.0.0",
      "subnet": "0.0.0.0",
      "gateway": "0.0.0.0",
      "dns": "8.8.8.8",
      "mac": "00:00:00:00:00:00"
     }
    
About

Avatar for opichals @opichals started