1. 05 Sep, 2016 4 commits
  2. 28 Aug, 2016 1 commit
  3. 27 Aug, 2016 1 commit
  4. 13 Jul, 2016 1 commit
  5. 06 Jul, 2016 1 commit
  6. 05 Jul, 2016 1 commit
  7. 21 May, 2016 1 commit
  8. 20 May, 2016 1 commit
  9. 17 May, 2016 1 commit
  10. 12 May, 2016 1 commit
  11. 10 May, 2016 4 commits
  12. 07 May, 2016 1 commit
  13. 06 May, 2016 1 commit
  14. 05 May, 2016 2 commits
  15. 04 May, 2016 3 commits
    • Paul's avatar
      bumped version of softdevice · 9b8f3df3
      Paul authored
      was downloading version 2.0.1 of the soft device but the board definition had 2.0.0 which resolves issue #13
      9b8f3df3
    • Paul's avatar
      Updated README.md · 96ff26da
      Paul authored
      link was to the preview release not the current dk, both link to the same file for now
      96ff26da
    • Paul's avatar
      Update README.md for first use case · 55d1a096
      Paul authored
      an extra step for the first out of box experience required for nrf52, took me a few hours to test why the following did not work:
      ```
      void setup() {
        pinMode(PIN_LED1, OUTPUT);
        pinMode(PIN_LED2, OUTPUT);
        pinMode(PIN_LED3, OUTPUT);
        pinMode(PIN_LED4, OUTPUT);
      }
      
      void loop() {
        digitalWrite(PIN_LED1, HIGH);
        delay(50);
        digitalWrite(PIN_LED2, HIGH);
        delay(50);
        digitalWrite(PIN_LED3, HIGH);
        delay(50);
        digitalWrite(PIN_LED4, HIGH);
        delay(50);
        digitalWrite(PIN_LED1, LOW);
        delay(50);
        digitalWrite(PIN_LED2, LOW);
        delay(50);
        digitalWrite(PIN_LED3, LOW);
        delay(50);
        digitalWrite(PIN_LED4, LOW);
        delay(50);
      }
      ```
      55d1a096
  16. 03 May, 2016 3 commits
  17. 30 Apr, 2016 1 commit
  18. 29 Apr, 2016 1 commit
  19. 27 Apr, 2016 4 commits
  20. 25 Apr, 2016 1 commit
  21. 21 Apr, 2016 6 commits