B4i Library iPing - Send and receive ping (ICMP) packets - Erel    Jul 11, 2021   (9 reactions) This library wraps Apple's code: https://developer.apple.com/library/archive/samplecode/SimplePing/Introduction/Intro.html
Usage example:
Sub Class_Globals
Private Root As B4XView
Private xui As XUI
Private Pinger As SimplePing
End Sub
Public Sub Initialize
End Sub
Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1
Root.LoadLayout("MainPage"... B4A Code Snippet [B4X] B4XPing: ping to server - TILogistic    Sep 6, 2024   (7 reactions) Ping a server to indicate whether it is up or down, or if it is a valid server.
Dim Ping As B4XPing
Ping.Initialize
Ping.TimeOut = 30 * DateTime.TicksPerSecond 'default 60 seconds... B4R Library ESP8266 Ping - Erel    Jan 1, 2017   (8 reactions)   tags: B4R ESP8266 Ping Server rESP8266Ping is based on: https://github.com/dancol90/ESP8266Ping
It is an ESP8266 only library.
It implements a ping feature which can be useful to test whether a remote server is reachable... B4A Library [B4X] SP Ping - Run the ping command B4A, B4J and B4I - Sergio Haurat    Jun 28, 2024   (8 reactions) SP Ping allows you to run the ping command on B4A, B4J and B4I. The characteristics of each... execution. In red we show you the fields that are empty in each operating system. Ping Events PingStarted Triggers when the ping starts PingFinished Triggers when ping stops PingError (Msg... to 1 Host unreachable ERROR: LANGUAGE NOT FOUND (Only B4J) Can't run ping command on your system (Only B4J) Types tpePing (Success As Boolean, toHost As String, toIP As String, fromDest... B4R Question ESP8266Ping lib trouble... - peacemaker    Mar 9, 2024 HI, All It looks like the Ping lib stopped to work. Sub Process_Globals Public Serial1 As Serial Private wifi As ESP8266WiFi Private ping As ESP8266Ping End Sub Private Sub AppStart Serial1.Initialize(115200) Log(CRLF, "AppStart") 'example of connecting to a local network If wifi.Connect2("wifinetwork", "password") Then Log("Connected to network") Log(ping.PingHost("google.com", 3)) Else... B4A Question SSL Websocket client - LucaMs    Jan 18, 2018   (1 reaction) Trying to connecting to my websocket server: closed javax.net.ssl.SSLProtocolException: SSL handshake aborted: ssl=0x63a133b0: Failure in SSL library, usually a protocol error error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure (external/openssl/ssl/s23_clnt.c:741 0x61803166:0x00000000) Libraries used: client: WebSocket 2.00 server: jServer 2.80 The server starts and it is reachable (ping). I suppose that if the server SslConfiguration (and the keyvaluestore... B4R Library rNewPing - Johan Schoeman    Jun 1, 2019   (9 reactions) This is my first attempt at a B4R library. Have wrapped NewPing for the HC-SR04 sensor (and I guess... folder with the .h and .cpp files must go to the root of your additional library folder) NewPing.zip - extract it and copy it to the Arduino library folder. b4rNewPingLibrary.zip - the B4R sample project... 'the library will use pin 10 as echo pin Dim np As NewPing Dim iterations As Byte = 10 'number of iterations when calling np.ping_median(iterations, max_distance) End... B4R Library ESP32 Ping - thetahsk    Oct 9, 2021   (5 reactions) This is a B4R-ESP32 portation from https://github.com/marian-craciunescu/ESP32Ping
Rename to rar...
Public Serial1 As Serial
Private ping As ESP32Ping
Private wifi As ESP8266WiFi
End Sub
Private... B4R Question Ping Compile error - hatzisn (first post)    Apr 21, 2025   (1 reaction) Or just move the XML to parent folder.... C/C++ Question [Solved] NewPing Wrapper - Johan Schoeman    Jun 1, 2019 I am trying to wrap the NewPing library (juts initialize and method ping_cm for now).
This is my rNewPing.f file:
#pragma once
#include "B4RDefines.h"
//~dependson: <NewPing.h>
namespace B4R {
// ~Version: 1.00
// ~ShortName: NewPing
class B4RNewPing {
private:
uint8_t backend;
public:
//~hide
NewPing* np;... Page: 1   2   3   4   5   |