B4A | Bluetooth | BLE2PeripheralEnhanced2 - BLE2Peripheral with multiple services | BLE2PeripheralEnhanced2 - BLE2Peripheral with multiple services |
BLE2PeripheralEnhanced2 BLE2PeripheralEnhanced2 is an update to Peter Simpson's BLE2PeripheralEnhanced library, which itself was an update to Erel's BLE2Peripheral library. My main addition is to allow for an arbitrary number of services to be defined. I won't duplicate the explanations that...
www.b4x.com
|
B4J | System Tray | Icon System Tray Example [Inline Java version] | Icon System Tray Example [Inline Java version] |
from: https://gist.github.com/jewelsea Sub Process_Globals Private MainForm As Form Private ps As JavaObject End Sub Sub AppStart (Form1 As Form, Args() As String) MainForm = Form1 MainForm.RootPane.LoadLayout("Layout1") Dim JavaFXTrayIconSample As JavaObject...
www.b4x.com
|
B4X | B4X | Automatically package b4xlib libraries [B4X] | When I was writing the b4xlib library, I encountered complicated steps, and I needed to decompress and compress the b4xlib file (zip format) frequently. So I wrote this tool to automatically package b4xlib libraries. At the same time, a project template was made. |
When I was writing the b4xlib library, I encountered complicated steps, and I needed to decompress and compress the b4xlib file (zip format) frequently. So I wrote this tool to automatically package b4xlib libraries. At the same time, a project template was made. Now I share it and give back...
www.b4x.com
|
B4J | MQTT | B4J RabbitMQ Client SSL/Username/Password | RabbitMQ is a reliable and mature messaging and streaming broker, which is easy to deploy on cloud environments, on-premises, and on your local machine. |
Well, MQTT is a very good Protocol - but what about RabbitMQ ? Do you wanna try it ? me too... You will need the following: 1. RabbitMQ JAVA Library and add it in Additional Libs 2. Create a RabbitMQ Broker/Server for example in cloudAMQP for free or you can host your own at your VPS using...
www.b4x.com
|
B4A | GPS/location/maps | GPS tutorial | GPS tutorial |
The GNSS library replaces the old GPS library. The GNSS library is available here: https://www.b4x.com/android/forum/threads/gnss-library-an-updated-gps-library.109110/#content Using it is quite simple: 1. Checking whether location services are available. If not take the user to the...
www.b4x.com
|
B4J | B4J Server | SSL Connections [Server] | SSL Connections [Server] |
Starting from B4J v2.00 the server can listen to two ports, the standard insecure port (http) and a secure port (https). The default port for http is 80 and for https is 443. These ports are used when the url doesn't explicitly specify a port number. It is recommended to go over the Wikipedia...
www.b4x.com
|
B4J | Raspberry Pi | Communicating with Raspberry Pi [PyBridge] | Communicating with Raspberry Pi [PyBridge] |
This sophisticated project does one thing - the user clicks on a hardware button, connected to the RPi, and a notification appears on the PC. The setup: RPi running Mosquitto broker as a service: https://randomnerdtutorials.com/how-to-install-mosquitto-broker-on-raspberry-pi/ The RPi runs...
www.b4x.com
|
B4J | Python | Console [non-ui] project template [PyBridge] | Console [non-ui] project template [PyBridge] |
Simple template for console apps. There is an assumption that the global Python will be used. Put in the additional libraries folder. Right click inside the libraries tag and choose refresh.
www.b4x.com
|
B4X | Audio/Video | Example Play Audio MP3 [b4a + b4i + b4j] [B4X] | Example Play Audio MP3 [b4a + b4i + b4j] [B4X] |
Explanation of the Solution Audio Session Configuration on iOS: On iOS, audio playback depends on the correct configuration of the audio session (AVAudioSession). By default, iOS may block or mute sounds if the audio session is not explicitly configured. The AVAudioSessionCategoryPlayback...
www.b4x.com
|
B4X | Comms & Network | Find all reachable ips in the local network [B4X] | Find all reachable ips in the local network [B4X] |
Slightly based on: https://stackoverflow.com/questions/16035636/how-to-get-all-ip-address-of-systems-connected-to-same-wi-fi-network-in-android/21091575#21091575 Compatible with B4A and B4J. Manifest editor (B4A only): AddPermission(android.permission.ACCESS_WIFI_STATE)...
www.b4x.com
|
B4A | Images | HugeImageView - show very large images | HugeImageView - show very large images |
Q: I want to load a 10,000 x 10,000 image? A: That's impossible!!! The memory required is: width * height * 4 = 400MB. A: You will need to scale down the image. A: Sure. Use HugeImageView: (image source: https://images4.alphacoders.com/655/655004.jpg) How does it work? It uses two layers -...
www.b4x.com
|
B4J | Database | jRDC2 Server [Project Template] | Project template based on jRDC2 version 2.23 with sample database. |
Version: 3.10 Project template based on jRDC2 version 2.23 with sample database. GitHub: https://github.com/pyhoon/jrdc2-server-template-b4j Template: JRDC Server (3.10).b4xtemplate Supported databases: SQLite MySQL MS SQL Firebird Postgresql DBF Depends on: JavaObject jRandomAccessFile...
www.b4x.com
|
B4A | Notifications | NB6 - Notifications Builder class (2018) | This is an internal library now.
For a long time there were two ways for B4A developers to show notifications:
- Simple notifications with the built-in Notification object.
- More complex notifications with barx's NotificationBuilder library. Thank you barx for all your work!!!
The notifications features changed a lot as Android evolved. Android 8 (with targetSdkVersion 26+) adds another complexity with the introduction of notification channels.
The built-in Notification object was rewritten in B4A v8 to work properly with all versions.
This is a good option if you are interested in simple notifications. |
Background The notifications features changed a lot as Android evolved. Android 8 (with targetSdkVersion 26+) adds another complexity with the introduction of notification channels. The built-in Notification object was rewritten in B4A v8 to work properly with all versions. This is a good...
www.b4x.com
|
B4J | Images | WebGL Library [B4J] | WebGL Library [B4J] |
Hi all, after a long develop making it to work exactly as I wanted ... ... since I promised a fully functional 3D library to some users who requested it ... ... I'm very happy today to release the B4J WebGL library. This library fully exposes the super powerful THREEJS JavaScript library...
www.b4x.com
|
B4J | Notifications | Windows 10/11 notifications [PyBridge] | Windows 10/11 notifications [PyBridge] |
Based on: https://github.com/GitHub30/win11toast Many options. Install: pip install win11toast Code: Private Sub ShowNotification(Title As String, Body As String, AppId As String) As PyWrapper Dim toast As PyWrapper = Py.ImportModuleFrom("win11toast", "toast") Return...
www.b4x.com
|
B4X | Images | ZoomImageView - Cross platform zoomable + pannable image view [B4X] | A custom view that shows an image and allows the user to zoom and pan the image |
A custom view that shows an image and allows the user to zoom and pan the image. Instructions: - Add with designer. - Call SetBitmap. Updates: v1.06 - Fixes an issue with Android 15. v1.05 - Base_Resize is public. Call it after resizing the view in B4A. v1.04 - Fixes an issue in B4i where the...
www.b4x.com
|
B4A | List- and scrollview | HOW YOU CAN USE ScrollView | Scrolling a panel |
hello if you have a panel and you want scroll this panel then you use this source. at first create scrollview in source code then cut views in your panel and paste in scrollview panel now show this ' ______________________________________ If scvSetup.IsInitialized = False Then...
www.b4x.com
|
B4X | Database | jRDC2 Client [B4X] [B4J, B4A, B4i] [Project Template] | jRDC2 Client [B4X] [B4J, B4A, B4i] [Project Template] |
Version: 2.10 Description: JRDC Client Template to be used with [Project Template] jRDC2 Server. GitHub: https://github.com/pyhoon/jrdc2-client-template-b4x How to use: Run jRDC2 Server Create a new project from B4A, B4i or B4J Change the rdcLink in Main module to jRDC2 server IP and run...
www.b4x.com
|
B4J | GPS/location/maps | jSD_OpenMaps | As many currently know Googlemaps' Webapi do not work correctly on the webview because the latest versions use webgl. I decided to do a new library that uses OpenMap and Leaflet with the same methods and events of the Googlemaps bookshop. I also created a second OpenMapext class that adds some Googlemapsext commands to maintain compatibility and minimize changes to the existing code. The code we used with GMAPS with Javaobject to obtain extra functions is no longer usable. Tested with Java 19, |
As many currently know Googlemaps' Webapi do not work correctly on the webview because the latest versions use webgl I decided to do a new library that uses OpenMap and Leaflet with the same methods and events of the Googlemaps bookshop. I also created a second OpenMapext class that adds some...
www.b4x.com
|
B4J | Raspberry Pi | LGPIO - Raspberry Pi GPIO [PyBridge] | LGPIO - Raspberry Pi GPIO [PyBridge] |
Based on: https://abyz.me.uk/lg/py_lgpio.html Tested on RPi 5. It should be compatible with most boards. With the latest version of Raspbian, everything needed is preinstalled (Python and lgpio). For now the GPIO related features are wrapped. The attached example demonstrates the simple...
www.b4x.com
|
B4J | Game | Make a simple 3D game with WebGL library, with gravity and collisions in less than 300 lines of code. | Make a simple 3D game with WebGL library, with gravity and collisions in less than 300 lines of code. |
Hi all, this code will show how to make a simple 3D game, with gravity and collisions by code without use any physics engine. I want to remember that with WebGL library you can use more than one integrated (or non integrated) physics engines, like cannon-es, ammo.js, rapier and more others...
www.b4x.com
|
B4J | Sithaso | Create WebSites & WebApps with the power of the Abstract Designer [OpenSource] [Web] [SithasoDaisy5] [Beta] | Create WebSites & WebApps with the power of the Abstract Designer [OpenSource] [Web] [SithasoDaisy5] [Beta] |
DISCLAIMER - TO AVOID CONFUSION, THIS IS A NEW B4XLIB AND NOT SITHASODAISY 2, THIS IS OPEN-SOURCE, SITHASODAISY 2 IS NOT PLEASE NOTE THAT ALL REFERENCES TO THIS B4XLIB WILL BE [SithasoDaisy5] OR [SDV5] January 2025: SITHASODAISY5 is currently in BETA and is still being developed...
www.b4x.com
|
B4J | Sithaso | Designing Forms with the Abstract Designer [Web] [SithasoDaisy5] | Designing Forms with the Abstract Designer [Web] [SithasoDaisy5] |
Hi Fam SithasoDaisy5 Demo Get your FREE copy of SithasoDaisy5 here With SithasoDaisy5, you design your webapps and websites with the power of the abstract designer and generate events and and. In this sneak peak, I'd like to show you the simplicity of creating a form in the abstract designer...
www.b4x.com
|
B4J | Python | Few tips for library developers [PyBridge] | Few tips for library developers [PyBridge] |
Here are a few tips I collected while writing the wrapper for Bleak (BLE). Bleak is the first non-small library written for PyBridge and it is worth going over its code. You can unzip the b4xlib to find the two classes. 1. All the Python code that is added with Py.RunCode and the other similar...
www.b4x.com
|
B4R | B4R | How to calculate device's battery lifetime ? | How to calculate device's battery lifetime ? |
https://www.omnicalculator.com/other/battery-life Say, device with tiniest MCU (needed just 2 mA current for work) powered by CR2032 battery (of 200 mAh capacity) and sleeping almost 5 mins (298 seconds of 300 with total consumption of just 1 microAmpere during sleep), but awaked just for 2...
www.b4x.com
|
B4A | File handling | How to get access to ALL FILES AND FOLDERS on Android 11 to 14+ [DirRootExternal] | How to get access to ALL FILES AND FOLDERS on Android 11 to 14+ [DirRootExternal] |
This is an example of how some apps like file managers, antivirus and other apps that depends on access to DirRootExternal to create folders, create files and read files from the Root of the device. NOTE: This cannot be published to the Google Play store unless your apps CORE functionality...
www.b4x.com
|
B4J | Label | HyperLink | A custom view to display HyperLink (LinkLabel). |
A custom view to display HyperLink (LinkLabel).
www.b4x.com
|
B4X | WebApp | MiniORM [B4X] [Project Template] | MiniORM [B4X] [Project Template] |
Version 2.00 A quick app using MiniORMUtils library with add, edit, delete item MiniORM-Demo repackaged as b4xtemplate from https://www.b4x.com/android/forum/threads/b4x-miniormutils-sql-query-builder.141446/ GitHub: https://github.com/pyhoon/MiniORM-B4X Depends on: B4XPages...
www.b4x.com
|
B4J | MQTT | MQTT: Mosquito over websockets | MQTT: Mosquito over websockets |
Hi Fam Back to these challenges... https://cedalo.com/blog/enabling-websockets-over-mqtt-with-mosquitto/
www.b4x.com
|
B4J | Raspberry Pi | Raspberry Pi 5 - first steps | Raspberry Pi 5 - first steps |
Getting the RPi 5 to work with B4J is very simple. I've tested it with the recommended 64 bit Raspbian OS (bookworm). 1. Download and unpack the Linux ARM Full JDK (21): https://download.bell-sw.com/java/21.0.6+10/bellsoft-jdk21.0.6+10-linux-aarch64-full.tar.gz 2. Download B4J-Bridge wget...
www.b4x.com
|
B4R | Bluetooth | rBLEServer for ESP32 | rBLEServer for ESP32 |
B4R Library rBLEServer Purpose rBLEServer is an open source library to create a Bluetooth Low Energy (BLE) server. The purpose is to run the BLE server on ESP32 hardware with sensors & actuators connected. connect a single client to read sensor data or set the state of actuator(s). This B4R...
www.b4x.com
|
B4I | Other | RevenueCat | RevenueCat is a platform that simplifies in-app subscriptions and purchases for mobile apps. It provides tools for managing subscription billing, analytics, and user retention across iOS, Android, and web, without needing to build a backend. Usage is free for apps with less than $2,500 in monthly tracked revenue (MTR). |
RevenueCat is a platform that simplifies in-app subscriptions and purchases for mobile apps. It provides tools for managing subscription billing, analytics, and user retention across iOS, Android, and web, without needing to build a backend. Usage is free for apps with less than $2,500 in...
www.b4x.com
|
B4J | BAnano | Send, Receive Push Notifications in your Local Mosquito Broker in your WebApp. [Web] [BANanoMQTT] | Send, Receive Push Notifications in your Local Mosquito Broker in your WebApp. [Web] [BANanoMQTT] |
Hi Fam Well, here it is.. Why? I need a way to receive MQTT push notifications on my webapp. I didnt want to use Firebase but MQTT. The problem is the B4x Broker does not support websockets, so one can use something else and I didnt want an online broker either, but something I can have...
www.b4x.com
|
B4J | Bluetooth | Bleak - Bluetooth BLE [PyBridge] | Bleak - Bluetooth BLE library that allows scanning for BLE peripherals, connecting, reading, subscribing and writing. |
Bleak is a Python BLE library: https://bleak.readthedocs.io/en/latest/index.html The attached project wraps this library and allows scanning for BLE peripherals, connecting, reading, subscribing and writing. The example project allows connecting to multiple devices at once. Python...
www.b4x.com
|
B4X | Bluetooth | Desktop - Mobile Communication based on BLE [Bluetooth Low Energy] [B4X] [PyBridge] | Desktop - Mobile Communication based on BLE [Bluetooth Low Energy] [B4X] [PyBridge] |
I've posted in the past a few examples of a simple chat app based on BLE: https://www.b4x.com/android/forum/threads/ble-chat-connecting-android-and-ios.66543/#content A new version of this example is attached and B4J is now joining the party 🥳 B4J, using the Bleak library, implements the...
www.b4x.com
|
B4J | Database | Mini ORM | This class can be used for scaffolding db schema or used together with my Web API. |
Updates Version 2.00 is available https://www.b4x.com/android/forum/threads/b4x-miniormutils.166030/ MiniORMUtils Version: 1.17 This library can be use for creating db schema and performing CRUD operations. It is suitable for Web API Template or any database system. Currently it supports...
www.b4x.com
|
B4X | WebApp | MiniORMUtils [B4X] | MiniORMUtils [B4X] |
MiniORMUtils Version: 2.50 This library can be use for creating db schema and performing CRUD operations. It is suitable for Web API Template or any database system. Currently it supports SQLite and MySQL (B4J). Project Template: [B4X] [Project Template] MiniORM GitHub...
www.b4x.com
|
B4J | Database | mysql-connector-java | mysql-connector-java |
Hi Fam In case someone is looking for these... been searching for mysql-connector-java related stuff https://mvnrepository.com/artifact/mysql/mysql-connector-java
www.b4x.com
|
B4J | WebApp | Web API Server 3 [beta] [Project Template] | Web API Server 3 [Project Template] |
Version: 3.30 Description: Create Web API Server using B4X Database: SQLite, MySQL Template: Web API Server (3.30).b4xtemplate Depends on: WebApiUtils.b4xlib (v3.05) MiniORMUtils.b4xlib (v2.00) sqlite-jdbc-3.7.2.jar (or your preferred version) mysql-connector-java-8.0.30.jar (or your...
www.b4x.com
|
B4X | Views - additional | XUI Views - Cross platform views and dialogs [B4X] | XUI Views is a b4x library (https://www.b4x.com/android/forum/threads/100383/#content). The same b4xlib library is compatible with B4A (v8.8+), B4J (v7.0+) and B4i (TBD+). It is a collection of custom views and dialogs. Everything is written in B4X. The source code is included inside the b4xlib file, which is a zip file. |
XUI Views is a b4x library (https://www.b4x.com/android/forum/threads/100383/#content). The same b4xlib library is compatible with B4A, B4i and B4J It is a collection of custom views and dialogs. Everything is written in B4X. The source code is included inside the b4xlib file, which is a zip...
www.b4x.com
|
B4J | Payment | Deutsche Post Internetmarke - get Stamps per Api | Deutsche Post Internetmarke - get Stamps per Api |
This Thread is about the german Post and their free Api Service for Postalstamps and other Services. https://developer.dhl.com/api-reference/deutsche-post-internetmarke-post-paket-deutschland#get-started-section I´ll post some Examples in this Thread. Most probably it is not of interest for...
www.b4x.com
|