Forum Replies Created

Viewing 15 posts - 31 through 45 (of 1,024 total)
  • Author
    Posts
  • in reply to: simpleFTPServer and IpCams #32124
    Renzo Mischianti
    Keymaster

      Hi Son,
      I don’t know how the IPCam accesses the FTP server, but if you are already in Test and write ./Test the server correctly, go to /Test/Test. If you are in / and write ./Test, go to /Test.
      But I do this test writing on the bar of the Filezilla client.
      Bye Renzo

      in reply to: Lolin D32 pro #32123
      Renzo Mischianti
      Keymaster

        Hi Huw,
        Can you try with a different battery? If the battery has any problems, it may not be sufficient to power up the device.
        Bye Renzo

        in reply to: simple FTP Server EthernetEnc #32105
        Renzo Mischianti
        Keymaster

          Hi,
          It’s important to set the correct library for EthernetEnc in FTPibraryKey.h and check that the library you set is the same as the one in your test.
          Bye Renzo

          in reply to: BeePrint compatible with Ghost 6? #32100
          Renzo Mischianti
          Keymaster
            in reply to: Data Size Not Match 7 error ESP32 #32099
            Renzo Mischianti
            Keymaster

              Hi,
              I think that can be two problems:
              first, the configuration of 19200 isn’t aligned with the device config;
              Second, serial noise can be produced by low power to the device.
              Bye Renzo

              in reply to: E32 Library Compatibility #32097
              Renzo Mischianti
              Keymaster

                Hi Cosmic,
                yes is fully compatible.
                Remember to power the device with 5v and good power.
                Bye Renzo

                in reply to: Asynchronous Transmission Using E220-900T22D #32088
                Renzo Mischianti
                Keymaster

                  Ahh! perfect!
                  Thanks for your feedback, and enjoy your work!
                  Bye Renzo

                  in reply to: Library for EBYTE E28 2G4T27SX #32071
                  Renzo Mischianti
                  Keymaster

                    Hi Adi,
                    no, sorry, It’s not in plan.
                    Bye Renzo

                    in reply to: ESP32 / ENC28J60 – WebServer #32070
                    Renzo Mischianti
                    Keymaster

                      Hi Connexconcept,
                      The core 3 version of arduino-esp32 supports Ethernet natively, so I think you can now use Ethernet for your WebServer like WiFi.
                      Bye Renzo

                      in reply to: Asynchronous Transmission Using E220-900T22D #32069
                      Renzo Mischianti
                      Keymaster

                        Hi, cosmic,
                        The library is designed to send data and wait for the device’s feedback, but it does not use any delay or similar operations, so I think it doesn’t perform a blocking operation.
                        If you need to perform nonblocking operations without feedback, you can use a multicore device like esp32s3 or similar.
                        Bye Renzo

                        in reply to: ESP32 – Ebyte LORA E32 433T30D V8 #32036
                        Renzo Mischianti
                        Keymaster

                          Hi Petoga,
                          to use different HardwareSerial pins, you must use the correct constructor

                          
                          LoRa_E32(byte txE32pin, byte rxE32pin, HardwareSerial* serial, byte auxPin, byte m0Pin, byte m1Pin, UART_BPS_RATE bpsRate, uint32_t serialConfig = SERIAL_8N1);
                          // -------------------------------------
                          

                          so the first example constructor become

                          
                          LoRa_E32 e32ttl100(RX_PIN, TX_PIN, &Serial2, 35, M0, M1, UART_BPS_RATE_9600); //  RX AUX M0 M1
                          
                          

                          Bye Renzo

                          in reply to: Problem I2C @ ESP32-CAM and setup PCF8574A #31944
                          Renzo Mischianti
                          Keymaster

                            Hi,
                            for the interrupt you can use this constructor:

                            
                            	PCF8574(uint8_t address, int sda, int scl, uint8_t interruptPin,  void (*interruptFunction)());
                            

                            And the code become like so

                            
                            #define INTERRUPTED_PIN D7
                             
                            void ICACHE_RAM_ATTR interruptFunction();
                             
                            // initialize library
                            PCF8574 pcf8574(0x38, SDA, SCL, INTERRUPTED_PIN, interruptFunction);
                            

                            Bye Renzo

                            in reply to: E32-900T20D Lora repeater settings #31941
                            Renzo Mischianti
                            Keymaster

                              Hi g,
                              Well done! The project looks clean and well-designed, with the PCB neatly housed in the box. The solar panel and antenna add a practical and professional touch. If you’d like to share it on the site, I’m happy to help!
                              Bye Renzo

                              in reply to: E220-900T22D Data Size not match! #31933
                              Renzo Mischianti
                              Keymaster

                                Hi,
                                try to put 5v on power and 3.3v on logic level.
                                Bye Renzo

                                Renzo Mischianti
                                Keymaster

                                  Hi aleemont,
                                  I think to change speed, you must change the Air data rate. If you want to change the baud rate (I don’t remember very well), you must also set the baud rate on the initial constructor.
                                  By default, It is set to 9600.

                                  
                                  LoRa_E220(byte txE220pin, byte rxE220pin, UART_BPS_RATE bpsRate = UART_BPS_RATE_9600);
                                  LoRa_E220(byte txE220pin, byte rxE220pin, byte auxPin, UART_BPS_RATE bpsRate = UART_BPS_RATE_9600);
                                  LoRa_E220(byte txE220pin, byte rxE220pin, byte auxPin, byte m0Pin, byte m1Pin, UART_BPS_RATE bpsRate = UART_BPS_RATE_9600);
                                  

                                  Try and give me a feedback.
                                  Bye Renzo

                                Viewing 15 posts - 31 through 45 (of 1,024 total)
                                Exit mobile version