• Re: quel qu'un pour

    From JJenssen@3:770/3 to All on Mon Jun 20 11:41:20 2022
    Am 19.06.22 um 15:25 schrieb zeneca:
    répondre a des questions sur ESP8266 & Arduino ??
    Merci


    Don't believe one will do in French :(
    ___
    Regards
    JJenssen

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From zeneca@3:770/3 to All on Tue Jun 21 14:40:22 2022
    Le 21/06/22 à 13:52, Nikolaj Lazic a écrit :
    Dana Sun, 19 Jun 2022 15:25:52 +0200, zeneca <pasIci@ailleur.fr> napis'o:
    répondre a des questions sur ESP8266 & Arduino ??_IP(
    Merci

    As this is for PI which uses Linux, you should look at: https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/station-examples.html
    And look at WiFiMulti.
    Interesting, I will have a try.
    But the problem I a facing is my local provider doesnt give fixed ip
    address. So I have to give IPAdresse local_IP(MyIpAd);
    MyIpAd is
    #define 192,168,0,111 in another file.
    Regards

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From zeneca@3:770/3 to All on Tue Jun 21 16:08:40 2022
    Le 21/06/22 à 15:45, Martin Gregorie a écrit :
    On Tue, 21 Jun 2022 14:40:22 +0200, zeneca wrote:

    Le 21/06/22 à 13:52, Nikolaj Lazic a écrit :
    Dana Sun, 19 Jun 2022 15:25:52 +0200, zeneca <pasIci@ailleur.fr>
    napis'o:
    répondre a des questions sur ESP8266 & Arduino ??_IP(
    Merci

    As this is for PI which uses Linux, you should look at:
    https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/station-
    examples.html
    And look at WiFiMulti.
    Interesting, I will have a try.
    But the problem I a facing is my local provider doesnt give fixed ip
    address. So I have to give IPAdresse local_IP(MyIpAd);
    MyIpAd is #define 192,168,0,111 in another file.I think
    Regards

    Run a local DNS (named, kea or knot) - I'm running named.
    Set it up to be authoritative for your local LAN and to pass all other requests to the global root DNS servers.


    I think I will start a HOTSPOT on a Raspberry (maybe a Zero ) with
    dnsmask (dns and DHCP ) it also une local host table, and so be rid of
    the problem. But I need to use an extra system for this wich is...
    The Raspberry should have a second ethernet access (cable or a second
    wlan? looking for a Raspberry zero 2wh )

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Martin Gregorie@3:770/3 to zeneca on Tue Jun 21 13:45:54 2022
    On Tue, 21 Jun 2022 14:40:22 +0200, zeneca wrote:

    Le 21/06/22 à 13:52, Nikolaj Lazic a écrit :
    Dana Sun, 19 Jun 2022 15:25:52 +0200, zeneca <pasIci@ailleur.fr>
    napis'o:
    répondre a des questions sur ESP8266 & Arduino ??_IP(
    Merci

    As this is for PI which uses Linux, you should look at:
    https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/station- examples.html
    And look at WiFiMulti.
    Interesting, I will have a try.
    But the problem I a facing is my local provider doesnt give fixed ip
    address. So I have to give IPAdresse local_IP(MyIpAd);
    MyIpAd is #define 192,168,0,111 in another file.
    Regards

    Run a local DNS (named, kea or knot) - I'm running named.
    Set it up to be authoritative for your local LAN and to pass all other
    requests to the global root DNS servers.


    --

    Martin | martin at
    Gregorie | gregorie dot org

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Nikolaj Lazic@3:770/3 to All on Thu Jun 23 14:06:56 2022
    Dana Tue, 21 Jun 2022 14:40:22 +0200, zeneca <pasIci@ailleur.fr> napis'o:
    Le 21/06/22 à 13:52, Nikolaj Lazic a écrit :
    Dana Sun, 19 Jun 2022 15:25:52 +0200, zeneca <pasIci@ailleur.fr> napis'o: >>> répondre a des questions sur ESP8266 & Arduino ??_IP(
    Merci

    As this is for PI which uses Linux, you should look at:
    https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/station-examples.html
    And look at WiFiMulti.
    Interesting, I will have a try.
    But the problem I a facing is my local provider doesnt give fixed ip

    Your home AP handles DHCP requests. Your ESP will get local IP.
    Than your AP will send all your outgoing requests from its own address.
    In case you need to access your ESP from the net you will have to
    do port forwarding from your AP. That way you will be able to access your
    ESP from the net.

    If you need to know your AP's dynamic IP address you can use some kind
    of external service... I have something like this for sending my IP: https://mudrac.ffzg.hr/~nlazic/ip.php?whatever_text&1
    and for getting my IP I use: https://mudrac.ffzg.hr/~nlazic/ip.php?whatever_text

    You just have to send the first line from your ESP.
    Use the second line to get IP from yout AP to contact your ESP through
    port forwarding service on your AP.

    address. So I have to give IPAdresse local_IP(MyIpAd);
    MyIpAd is
    #define 192,168,0,111 in another file.

    You will be given local IP from your home Access point.
    Then sort out how to manage port forwarding on your AP.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)
  • From Nikolaj Lazic@3:770/3 to All on Thu Jun 23 14:09:54 2022
    Dana Tue, 21 Jun 2022 16:08:40 +0200, zeneca <pasIci@ailleur.fr> napis'o:
    Le 21/06/22 à 15:45, Martin Gregorie a écrit :
    On Tue, 21 Jun 2022 14:40:22 +0200, zeneca wrote:

    Le 21/06/22 à 13:52, Nikolaj Lazic a écrit :
    Dana Sun, 19 Jun 2022 15:25:52 +0200, zeneca <pasIci@ailleur.fr>
    napis'o:
    répondre a des questions sur ESP8266 & Arduino ??_IP(
    Merci

    As this is for PI which uses Linux, you should look at:
    https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/station-
    examples.html
    And look at WiFiMulti.
    Interesting, I will have a try.
    But the problem I a facing is my local provider doesnt give fixed ip
    address. So I have to give IPAdresse local_IP(MyIpAd);
    MyIpAd is #define 192,168,0,111 in another file.I think
    Regards

    Run a local DNS (named, kea or knot) - I'm running named.
    Set it up to be authoritative for your local LAN and to pass all other
    requests to the global root DNS servers.


    I think I will start a HOTSPOT on a Raspberry (maybe a Zero ) with

    That way you will again get the same functionality as with your AP
    connected to the internet (probably some kind of NAT... or CGNAT).

    dnsmask (dns and DHCP ) it also une local host table, and so be rid of
    the problem. But I need to use an extra system for this wich is...
    The Raspberry should have a second ethernet access (cable or a second
    wlan? looking for a Raspberry zero 2wh )

    Zero has USB connection through four testpoints on the board. You can use
    those to connect to some USB HUB and connect anything you need.
    But you have to provide enough power to the USB HUB.

    --- SoupGate-Win32 v1.05
    * Origin: Agency HUB, Dunedin - New Zealand | Fido<>Usenet Gateway (3:770/3)