Skip to content
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. OpenHardware.io
  3. 💬 Sensebender Gateway
  • Getting Started
  • Controller
  • Build
  • Hardware
  • Download/API
  • Forum
  • Store

💬 Sensebender Gateway

Scheduled Pinned Locked Moved OpenHardware.io
mysensorsgatewaysamd
382 Posts 59 Posters 151.2k Views 53 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • pepsonP pepson

    hi
    when i try compile sketch only with change radio to rfm69hw i have this:
    Arduino:1.8.9 (Windows 10), Płytka:"Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)"

    SensebenderGatewaySerial:95:26: error: 'LED_BLUE' was not declared in this scope

    static uint8_t leds[] = {LED_BLUE, LED_RED, LED_GREEN, LED_YELLOW, LED_ORANGE};

                          ^
    

    SensebenderGatewaySerial:95:36: error: 'LED_RED' was not declared in this scope

    static uint8_t leds[] = {LED_BLUE, LED_RED, LED_GREEN, LED_YELLOW, LED_ORANGE};

                                    ^
    

    SensebenderGatewaySerial:95:45: error: 'LED_GREEN' was not declared in this scope

    static uint8_t leds[] = {LED_BLUE, LED_RED, LED_GREEN, LED_YELLOW, LED_ORANGE};

                                             ^
    

    SensebenderGatewaySerial:95:56: error: 'LED_YELLOW' was not declared in this scope

    static uint8_t leds[] = {LED_BLUE, LED_RED, LED_GREEN, LED_YELLOW, LED_ORANGE};

                                                        ^
    

    SensebenderGatewaySerial:95:68: error: 'LED_ORANGE' was not declared in this scope

    static uint8_t leds[] = {LED_BLUE, LED_RED, LED_GREEN, LED_YELLOW, LED_ORANGE};

                                                                    ^
    

    C:\Users\Piotrek\Desktop\SensebenderGatewaySerial-sketch\SensebenderGatewaySerial\SensebenderGatewaySerial.ino: In function 'void preHwInit()':

    SensebenderGatewaySerial:116:10: error: 'MY_SWC1' was not declared in this scope

    pinMode(MY_SWC1, INPUT_PULLUP);

          ^
    

    SensebenderGatewaySerial:117:10: error: 'MY_SWC2' was not declared in this scope

    pinMode(MY_SWC2, INPUT_PULLUP);

          ^
    

    SensebenderGatewaySerial:130:17: error: 'LED_BLUE' was not declared in this scope

    digitalWrite(LED_BLUE, led_state);
    
                 ^
    

    SensebenderGatewaySerial:145:16: error: 'LED_GREEN' was not declared in this scope

    digitalWrite(LED_GREEN, HIGH);

                ^
    

    SensebenderGatewaySerial:149:16: error: 'LED_YELLOW' was not declared in this scope

    digitalWrite(LED_YELLOW, HIGH);

                ^
    

    SensebenderGatewaySerial:154:16: error: 'LED_ORANGE' was not declared in this scope

    digitalWrite(LED_ORANGE, HIGH);

                ^
    

    SensebenderGatewaySerial:167:17: error: 'LED_RED' was not declared in this scope

    digitalWrite(LED_RED, HIGH);
    
                 ^
    

    C:\Users\Piotrek\Desktop\SensebenderGatewaySerial-sketch\SensebenderGatewaySerial\SensebenderGatewaySerial.ino: In function 'bool testSDCard()':

    SensebenderGatewaySerial:219:33: error: 'MY_SDCARD_CS' was not declared in this scope

    if (!card.init(SPI_HALF_SPEED, MY_SDCARD_CS)) {

                                 ^
    

    C:\Users\Piotrek\Desktop\SensebenderGatewaySerial-sketch\SensebenderGatewaySerial\SensebenderGatewaySerial.ino: In function 'bool testEEProm()':

    SensebenderGatewaySerial:249:2: error: 'SerialUSB' was not declared in this scope

    SerialUSB.print(" -> EEPROM ");

    ^

    C:\Users\Piotrek\Desktop\SensebenderGatewaySerial-sketch\SensebenderGatewaySerial\SensebenderGatewaySerial.ino: In function 'bool testAnalog()':

    SensebenderGatewaySerial:267:30: error: 'MY_BAT_DETECT' was not declared in this scope

    int bat_detect = analogRead(MY_BAT_DETECT);

                              ^
    

    exit status 1
    'LED_BLUE' was not declared in this scope

    What is error ? please help me

    magpernM Offline
    magpernM Offline
    magpern
    wrote on last edited by magpern
    #361

    @pepson said in 💬 Sensebender Gateway:

    hi
    when i try compile sketch only with change radio to rfm69hw i have this:
    Arduino:1.8.9 (Windows 10), Płytka:"Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)"

    SensebenderGatewaySerial:95:26: error: 'LED_BLUE' was not declared in this scope

    You cannot use the SensebenderGatewaySerial sketch on an Atmega2560. The SensbenderGatewaySerial sketch is for the SAMD board called Sensebender Gateway.

    If you have the real Sensebender Gateway you should use this one
    0_1564697307746_8465ebd2-b844-48b0-9efa-e8aa2cbec9d8-image.png

    pepsonP 1 Reply Last reply
    0
    • magpernM magpern

      @pepson said in 💬 Sensebender Gateway:

      hi
      when i try compile sketch only with change radio to rfm69hw i have this:
      Arduino:1.8.9 (Windows 10), Płytka:"Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)"

      SensebenderGatewaySerial:95:26: error: 'LED_BLUE' was not declared in this scope

      You cannot use the SensebenderGatewaySerial sketch on an Atmega2560. The SensbenderGatewaySerial sketch is for the SAMD board called Sensebender Gateway.

      If you have the real Sensebender Gateway you should use this one
      0_1564697307746_8465ebd2-b844-48b0-9efa-e8aa2cbec9d8-image.png

      pepsonP Offline
      pepsonP Offline
      pepson
      wrote on last edited by
      #362

      @magpern
      But get this board to Arduino IDE?

      magpernM 1 Reply Last reply
      0
      • pepsonP pepson

        @magpern
        But get this board to Arduino IDE?

        magpernM Offline
        magpernM Offline
        magpern
        wrote on last edited by
        #363

        @pepson said in 💬 Sensebender Gateway:

        @magpern
        But get this board to Arduino IDE?

        Boards / Boards manager...
        search for sensebender
        0_1564700611126_700dbdb9-bc5b-45be-9c89-3b23a7004ea3-image.png

        You might have to

        File / Preferences / Additional Board manager URLs
        add
        https://raw.githubusercontent.com/mysensors/ArduinoBoards/master/package_mysensors.org_index.json

        1 Reply Last reply
        2
        • pepsonP Offline
          pepsonP Offline
          pepson
          wrote on last edited by
          #364

          Hi
          I compiled and write to gateway this programmm. Then i connected it to my RPI with Hassio (Home Assistant). In logs on home assistant still show me info: Gateway /dev/serial/by-id/usb-MySensors.org_Sensebender_GW_6A153443514D355934202020FF10182D-if00 not ready after 15.0 secs so continuing with setup

          but after run Home Assistant gateway works ok. I send info mto developer Home Assistant ans she not see any bugs....
          How i can resolved this problem ?

          1 Reply Last reply
          0
          • pepsonP Offline
            pepsonP Offline
            pepson
            wrote on last edited by pepson
            #365

            And please help me how i can compile it as gateway Ethernet with module W5100.

            Only add to sketch:
            // Enable gateway ethernet module type
            #define MY_GATEWAY_W5100

            // Enable to UDP
            //#define MY_USE_UDP

            //#define MY_IP_ADDRESS 192,168,3,160 // wpisz adres ip bramki
            // Renewal period if using DHCP
            //#define MY_IP_RENEWAL_INTERVAL 60000
            // The port to keep open on node server mode / or port to contact in client mode
            #define MY_PORT 5003 //wpisz numer portu bramki

            // Controller ip address. Enables client mode (default is "server" mode).
            // Also enable this if MY_USE_UDP is used and you want sensor data sent somewhere.
            //#define MY_CONTROLLER_IP_ADDRESS 192, 168, 178, 254

            // The MAC address can be anything you want but should be unique on your network.
            // Newer boards have a MAC address printed on the underside of the PCB, which you can (optionally) use.
            // Note that most of the Ardunio examples use "DEAD BEEF FEED" for the MAC address.
            #define MY_MAC_ADDRESS 0xDC, 0xAE, 0xB2, 0x3F, 0xFF, 0xDC

            ???

            1 Reply Last reply
            0
            • pepsonP Offline
              pepsonP Offline
              pepson
              wrote on last edited by
              #366

              When try compilation with this W5100 i get error:

              Opcje projektu zmienione, przeładuj całość
              In file included from C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/MySensors.h:208:0,

                           from C:\Users\Piotrek\Desktop\SensebenderGatewayETHERNET\SensebenderGatewayETHERNET.ino:111:
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:74:1: error: 'EthernetServer' does not name a type

              EthernetServer _ethernetServer(_ethernetGatewayPort);

              ^~~~~~~~~~~~~~

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:89:8: error: 'EthernetClient' does not name a type

              static EthernetClient client = EthernetClient();

                  ^~~~~~~~~~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp: In function 'bool gatewayTransportInit()':

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:149:7: error: 'Ethernet' was not declared in this scope

              if (!Ethernet.begin(_ethernetGatewayMAC)) {

                 ^~~~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:149:7: note: suggested alternative: '_ethernetMsg'

              if (!Ethernet.begin(_ethernetGatewayMAC)) {

                 ^~~~~~~~
              
                 _ethernetMsg
              

              In file included from C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/MySensors.h:49:0,

                           from C:\Users\Piotrek\Desktop\SensebenderGatewayETHERNET\SensebenderGatewayETHERNET.ino:111:
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:156:16: error: 'Ethernet' was not declared in this scope

                          Ethernet.localIP()[0],
              
                          ^
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/MyConfig.h:1815:48: note: in definition of macro 'DEBUG_OUTPUT'

              #define DEBUG_OUTPUT(x,...) hwDebugPrint(x, ##VA_ARGS) //!< debug

                                                          ^~~~~~~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:155:2: note: in expansion of macro 'GATEWAY_DEBUG'

              GATEWAY_DEBUG(PSTR("GWT:TIN:IP=%" PRIu8 ".%" PRIu8 ".%" PRIu8 ".%" PRIu8 "\n"),

              ^~~~~~~~~~~~~

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:156:16: note: suggested alternative: '_ethernetMsg'

                          Ethernet.localIP()[0],
              
                          ^
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/MyConfig.h:1815:48: note: in definition of macro 'DEBUG_OUTPUT'

              #define DEBUG_OUTPUT(x,...) hwDebugPrint(x, ##VA_ARGS) //!< debug

                                                          ^~~~~~~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:155:2: note: in expansion of macro 'GATEWAY_DEBUG'

              GATEWAY_DEBUG(PSTR("GWT:TIN:IP=%" PRIu8 ".%" PRIu8 ".%" PRIu8 ".%" PRIu8 "\n"),

              ^~~~~~~~~~~~~

              In file included from C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/MySensors.h:208:0,

                           from C:\Users\Piotrek\Desktop\SensebenderGatewayETHERNET\SensebenderGatewayETHERNET.ino:111:
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:189:2: error: '_ethernetServer' was not declared in this scope

              _ethernetServer.begin();

              ^~~~~~~~~~~~~~~

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:189:2: note: suggested alternative: '_ethernetMsg'

              _ethernetServer.begin();

              ^~~~~~~~~~~~~~~

              _ethernetMsg

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp: In function 'bool gatewayTransportSend(MyMessage&)':

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:246:11: error: '_ethernetServer' was not declared in this scope

              nbytes = _ethernetServer.write(_ethernetMsg);

                     ^~~~~~~~~~~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:246:11: note: suggested alternative: '_ethernetMsg'

              nbytes = _ethernetServer.write(_ethernetMsg);

                     ^~~~~~~~~~~~~~~
              
                     _ethernetMsg
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp: In function 'bool _readFromClient()':

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:289:9: error: 'client' was not declared in this scope

              while (client.connected() && client.available()) {

                   ^~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:289:9: note: suggested alternative: 'Print'

              while (client.connected() && client.available()) {

                   ^~~~~~
              
                   Print
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp: In function 'bool gatewayTransportAvailable()':

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:409:2: error: 'EthernetClient' was not declared in this scope

              EthernetClient newclient = _ethernetServer.available();

              ^~~~~~~~~~~~~~

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:411:6: error: 'newclient' was not declared in this scope

              if (newclient) {

                ^~~~~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:412:7: error: 'client' was not declared in this scope

              if (client != newclient) {

                 ^~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:412:7: note: suggested alternative: 'Print'

              if (client != newclient) {

                 ^~~~~~
              
                 Print
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:422:6: error: 'client' was not declared in this scope

              if (client) {

                ^~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:422:6: note: suggested alternative: 'Print'

              if (client) {

                ^~~~~~
              
                Print
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp: In function 'void gatewayTransportRenewIP()':

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:463:6: error: 'Ethernet' was not declared in this scope

              if (Ethernet.maintain() & ~(0x06)) {

                ^~~~~~~~
              

              C:\Users\Piotrek\Documents\Arduino\libraries\MySensors/core/MyGatewayTransportEthernet.cpp:463:6: note: suggested alternative: '_ethernetMsg'

              if (Ethernet.maintain() & ~(0x06)) {

                ^~~~~~~~
              
                _ethernetMsg
              

              exit status 1
              Błąd kompilacji dla płytki Sensebender Gateway.

              What is a problem ?

              1 Reply Last reply
              0
              • pepsonP Offline
                pepsonP Offline
                pepson
                wrote on last edited by
                #367

                please help me....

                1 Reply Last reply
                0
                • pepsonP Offline
                  pepsonP Offline
                  pepson
                  wrote on last edited by
                  #368

                  Hi
                  Can anybody help me how compile sketch to this gateway to work as Ethernet Gateway...
                  When i try compile i get the error:
                  https://pastebin.com/BSQGsCgi

                  and my sketch looks like:
                  https://pastebin.com/R3vG076i

                  tekkaT 1 Reply Last reply
                  0
                  • pepsonP pepson

                    Hi
                    Can anybody help me how compile sketch to this gateway to work as Ethernet Gateway...
                    When i try compile i get the error:
                    https://pastebin.com/BSQGsCgi

                    and my sketch looks like:
                    https://pastebin.com/R3vG076i

                    tekkaT Offline
                    tekkaT Offline
                    tekka
                    Admin
                    wrote on last edited by
                    #369

                    @pepson Did you add

                    #include <Ethernet.h>
                    

                    ?

                    pepsonP 1 Reply Last reply
                    2
                    • tekkaT tekka

                      @pepson Did you add

                      #include <Ethernet.h>
                      

                      ?

                      pepsonP Offline
                      pepsonP Offline
                      pepson
                      wrote on last edited by
                      #370

                      @tekka
                      No.... thanks i fixed it....:)

                      1 Reply Last reply
                      0
                      • A Offline
                        A Offline
                        Andreas Kräuchi
                        wrote on last edited by
                        #371

                        I just got my Sensebender Gateway and loaded the Sensebender Gateway Serial sketch. When I use the MYSController I get those wired infos...
                        Currently there is no other Snesor runing just the Sensebender Gateway with an RF24. Why does it see a new child and what are all thos "hu;hu;hu" errors?

                        0_1576828002699_6e42e2a3-f57c-472c-9b59-c30670be617a-image.png

                        1 Reply Last reply
                        0
                        • A Offline
                          A Offline
                          Andreas Kräuchi
                          wrote on last edited by
                          #372

                          Ok solved it by adding:

                          #undef PRId8
                          #undef PRIi8
                          #undef PRIo8
                          #undef PRIu8
                          #undef PRIx8
                          #undef PRIX8
                          #undef PRIdLEAST8
                          #undef PRIiLEAST8
                          #undef PRIoLEAST8
                          #undef PRIuLEAST8
                          #undef PRIxLEAST8
                          #undef PRIXLEAST8
                          #undef PRIdFAST8
                          #undef PRIiFAST8
                          #undef PRIoFAST8
                          #undef PRIuFAST8
                          #undef PRIxFAST8
                          #undef PRIXFAST8
                          #define PRId8    "d"
                          #define PRIi8   "i"
                          #define PRIo8   "o"
                          #define PRIu8   "u"
                          #define PRIx8   "x"
                          #define PRIX8   "X"
                          #define PRIdLEAST8  "d"
                          #define PRIiLEAST8  "i"
                          #define PRIoLEAST8  "o"
                          #define PRIuLEAST8  "u"
                          #define PRIxLEAST8  "x"
                          #define PRIXLEAST8  "X"
                          #define PRIdFAST8 "d"
                          #define PRIiFAST8 "i"
                          #define PRIoFAST8 "o"
                          #define PRIuFAST8 "u"
                          #define PRIxFAST8 "x"
                          #define PRIXFAST8 "X"
                          
                          1 Reply Last reply
                          0
                          • A Offline
                            A Offline
                            andy5211d
                            wrote on last edited by
                            #373

                            Hello,

                            I have a similar issue with Sensebender Ethernet MQTT Gateway and MYSController. Can only connect to the gateway by serial from MYSController. The set-up is working correctly as best I can tell, and has several different MySensors in use. Has been working for a number of years. Only just discovered the MYSController software.

                            So the Controller only shows data in the MYSController Debug tab. Nothing in any of the others. NOTE in the screen grab below the Controller at 192.168.1.96 is not connected, there is no difference when it is other than the Gateway error (!GWT:RMQ:FAIL) is not shown. Anyone with any ides for me to pursue? Thanks.

                            62831d75-2036-447f-adee-1e8657841bd4-image.png

                            1 Reply Last reply
                            0
                            • bjornhallbergB Offline
                              bjornhallbergB Offline
                              bjornhallberg
                              Hero Member
                              wrote on last edited by
                              #374

                              As previously noted, Sensebender Gateway sketch from 2.3.2 with MySensors SAMD Boards 1.0.6 does not compile with Arduino SAMD Boards 1.8.9. Rolling back to Arduino SAMD Boards 1.8.8 or earlier version works.

                              1 Reply Last reply
                              0
                              • YoshuY Offline
                                YoshuY Offline
                                Yoshu
                                wrote on last edited by
                                #375

                                Does anyone have an idea about the sensebender gateway board not being recognised in windows 11? A new driver maybe or any other clues ?

                                1 Reply Last reply
                                0
                                • tbowmoT Offline
                                  tbowmoT Offline
                                  tbowmo
                                  Admin
                                  wrote on last edited by tbowmo
                                  #376

                                  Unfortunately I do not have any hardware compatible with win11, so can't test myself.. But if I remember right it should turn up as a generic cdc device..

                                  Is there any info in the windows device manager?

                                  YoshuY 1 Reply Last reply
                                  0
                                  • tbowmoT tbowmo

                                    Unfortunately I do not have any hardware compatible with win11, so can't test myself.. But if I remember right it should turn up as a generic cdc device..

                                    Is there any info in the windows device manager?

                                    YoshuY Offline
                                    YoshuY Offline
                                    Yoshu
                                    wrote on last edited by
                                    #377

                                    @tbowmo

                                    Nothing new appears in device manager or the usual ding.

                                    tbowmoT 1 Reply Last reply
                                    0
                                    • YoshuY Yoshu

                                      @tbowmo

                                      Nothing new appears in device manager or the usual ding.

                                      tbowmoT Offline
                                      tbowmoT Offline
                                      tbowmo
                                      Admin
                                      wrote on last edited by
                                      #378

                                      @Yoshu Does the same device work on another machine, running win10 / linux?

                                      1 Reply Last reply
                                      0
                                      • YoshuY Offline
                                        YoshuY Offline
                                        Yoshu
                                        wrote on last edited by
                                        #379

                                        I have not had the opportunity to try another machine yet. unfortunately I had only just given into the windows 11 upgrade messages days before deciding to set up my gateway.

                                        tbowmoT 1 Reply Last reply
                                        0
                                        • YoshuY Yoshu

                                          I have not had the opportunity to try another machine yet. unfortunately I had only just given into the windows 11 upgrade messages days before deciding to set up my gateway.

                                          tbowmoT Offline
                                          tbowmoT Offline
                                          tbowmo
                                          Admin
                                          wrote on last edited by
                                          #380

                                          @Yoshu you could boot linux off a usb, and check there..

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          4

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular