Avatar for dervondenbergen

dervondenbergen

Member since Oct 2014 • Last active Nov 2021
  • 1 conversations
  • 7 comments

student becoming a developer

Most recent activity

  • in Interfacing
    Avatar for dervondenbergen

    My baker number is #1368.
    Thanks for replacing it.

  • in Interfacing
    Avatar for dervondenbergen

    @DrAzzy are you seeing them now?

  • in Interfacing
    Avatar for dervondenbergen

    Hey Gordon,
    I also just got my Pico package. Like the others, it isn't working. In my case, there is actually a part dead.

    There are also many scratches.
    When suddenly a part of the screen fell out, I disassembled the screen and saw that a whole part was missing.

    I know it is not your fault, but I recommend you to switch screen manufacturer.

    • 7 comments
    • 3,513 views
  • in Interfacing
    Avatar for dervondenbergen

    I just tested something else and noticed, that it works if i wrap all the wifi code in a function like this:

    var wlan;
    
    function init(){
      wlan = require("CC3000").connect();
      wlan.connect( "AccessPointName", "WPA2key", function (s) { 
        if (s=="dhcp") {
          require("http").get("http://www.pur3.co.­uk/hello.txt", function(res) {
            res.on('data', function(data) {
              console.log(">" + data);
            });
          });
        }
      });
    }
    
    init();
    

    It would be good if this gets reflected in the CC3000 manual.

  • in Interfacing
    Avatar for dervondenbergen

    Yes, I mean the Espruino firmware, I just updated it and process.version says, 1v70, so I assume that the firmware is v70 and not v71.

    I checked again, and everything is wired up correctly.

    The connection parameters are also correct. The http request example is also not working.

    Could a possible problem be my wifi password? It contains a !, but I think this shouldn't prevent the CC3000 board to connect to my wifi.

  • in Interfacing
    Avatar for dervondenbergen

    Hello,

    is there a known error when using the Espruino board version 1.3 with the software version 1.7 and the Adafruit CC3000 Wifi board.

    I'm just trying to start the simple Web Server example but nothing is working. Only the Espruino freezes and I have to press the reset button to use it again.

Actions