Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

53 total results found

SD Card interfacing

ESP32-S3 WROOM-1

Trying to interface with this onboard SD card slot didn't go as easily as I had expected: it requires a different approach as the basic sample. It only works in "single bit mode". The first thing to do, is to find the pins that are relevant. I could find for...

Container station: Docker access Application

QNAP NAS

When you use a YAML file to create an Application in Container station, QNAP will create a private network.Hence, you will not be able to connect to it, for example with your nginx proxy forwarder. Go to your Container station Select the application and th...

Link subdomain to docker (NGINX)

QNAP NAS

This section assumes an NGINX docker and you have setup your DNS to connect to you NAS via a wildcard.   1) Enable Telnet on the NAS in Control Panel   2) Telnet into the NAS, I prefer putty 3) cd into the folder you can easily access or edit (in my c...

Interactive shell (commandline)

Docker

Sometimes it's difficult to understand problems within a docker. Like network issues or configurations that need to be adjusted.It's quite easy to log into a docker via command line. 1) open a command line (it can be that you need to activate SSH access) on t...

Install ping tools (for diagnostics)

Docker

Ping is an utility to see if another host is reachable.In some cases, dockers can be isolated and it can be daunting to try to understand who can see whom. Using ping can help diagnosing some problems Log into the docker (see interactive-shell-commandlin...

Alter url

Bookstack

Bookstack reads the environment variable "APP_URL", which unfortunately cannot be altered permanently in Container station. So, while you've started with a wrong URL, you will end up trying to set it straight.You can set it your environment variable manually ...

Run in an Iframe

Bookstack

If for some reason you want to run the bookstack in an iframe, you have to modify the .env file to set the allowed urls.This change is instantly and doesn't require the docker or service to be restarted. cd /config/www vi .env

Start from YAML / Docker application

Bookstack

It is possible to quickly setup a docker instance. This will created them into an isolated network - if you want to use an nginx passthrough,  you'll need to put them into the same network as nginx container Be aware, that the environment variable APP_URL ...

Case printing

HackRF One with Portapack H2+

The case made by Eried is the one I have used.Print the front and back revised. I didn't need the internal spacer.I couldn't find the M2.8 screws. So I used M2.5 bolts and they work perfectly. 20mm length came out just too short to stick them through from fron...

Painting an STL without color information

Bambulabs A1 mini

It can be that you import an STL file but want to add color information.Its easy with the bucket and start drawing.

error 0x105(ESP_ERR_NOT_FOUND)

ESP32-S3 WROOM-1 Errors encountered

This error can mean either: The camera isn't seated properly The pin configuration is wrong You've selected the wrong board E (893) camera: Camera probe failed with error 0x105(ESP_ERR_NOT_FOUND)Camera init failed with error 0x105 In the case of the E...

Configuration and initialization

ESP32-S3 WROOM-1 Camera interfacing

There are plenty of examples how to interface with the camera, but you'll find that you'll spend time trying to figure out "why it doesn't work. Where many posts will suggest "you have a faulty model", it's very likely you didn't find the correct pin-out schem...

designator order for field 'xxx' does not match declaration order in 'yyy'

ESP32-S3 WROOM-1 Errors encountered

This error occurs when the "order of declared members" is not in the right order.I don't know the rules of this language enough, but it would appear there is a fixed order when you do an inline declaration:   This is correct, for example: camera_config_t co...

Getting started

ESP32-S3 WROOM-1 Webserver

This is a simple example, how to use esp_http_server - probably there are libraries to handle it different.Yet this displays how to connect to the Wifi and start a webserver.And bind a handler to the endpoint "/" - where we reply with a string "hello world" #...

Read querystring

ESP32-S3 WROOM-1 Webserver

Alter the config, so the uri_match_fn is wildcard match httpd_config_t config = HTTPD_DEFAULT_CONFIG(); config.server_port = 80; config.uri_match_fn = httpd_uri_match_wildcard; httpd_uri_t index_uri = { .uri = "/*", .method ...

How to get started

Vuzix Introduction

The easiest way to get started has a few easy steps if you are familiar with Android Studio or building Android applications. If you haven't gone through it before, it might not always be so clear. So this might help you to get through it in a couple of steps...

.NET integration: Vuzix on MAUI

Vuzix .NET Integration

What we'll try to achieve We'll build an integration in MAUI that will hide all the complexity doing interfacing work on Android - and perhaps in a later stage on IOS as well. Microsoft MAUI is a way to build code in C# / .NET and run it on several devices. ...

.NET MAUI Integration: First contact

Vuzix .NET Integration

Introduction On this page, it's assumed you have a MAUI project with the nuget package ready to go. In the end,  you will be able to make a simple HTML website that receives text and it will be shown in the Z100 AR glasses.If you don't want to spend time for...

Transform .crt to .cer file

Windows

This is  a short reminder to go from one to another format in windows.1. Locate your crt file2. double click it, it should open the details of the certificate 3. Go to details, and "Copy to File..." a dialog will prompt which format to generate and where to...

.NET MAUI Integration: Images & Image Size exploration

Vuzix .NET Integration

Introduction At the end of this page, you will generate an image and display it in the glasses. We continue from the previous page. With this resulting project: ExerciseFinal.zip And will end up with this project: ExerciseSendImages.zip - which will allow t...