First test to make a personalised logo for myself to use embedded on movies or in OBS streams.
Created a simple animation in Blender.
We need to export in RGBA (A for aplha), One of the supported video codex you can use is : Quicktime – QT rle. Select this one, and make sure it’s RGBA and not RGB
Now i can use the exported video file in OBS for streaming. I made the animation i a way that it can be looped. (Don’t forget to set this option in OBS.)
When i play around with Arduino’s which i have flashed and start with their own access points. It’s sometimes not clear which remote IP is connected.
Applications like Tasmota,Wled and Easyesp startup with their own Access Point, which you can use to connect to and configure them to your real accesspoint. So you connect to this temporary AP, and want to remote access it with your phone’s browser. Not all apps (certainly not my apps) have a captive portal. Most won’t .. Which ip to use to connect?
Install JuiceSSH of you don’t have it .. it’s a must have really
Select quick connect – local device
Enter command “ip neigh”, It wil show devices connected to your android phone or which where broadcasting in your network-neighbourhood
Most of the times it also your default gw .. which can be found in settings. But above gives you more information.
I used to draw my network using inkscape, or graphviz. But the last years i’ve been using DrawIO. A friend is drawing his. So i posted some tips.
When using inkscape, i liked the way that i could view more or less details using layers. But editing was hard.
Getting DrawIO:
There is a online version: https://app.diagrams.net/ You can download a AppImage And .. install it in your nextcloud, which is the way i’m using it. (Login as admin, click Apps and search for draw.io)
Some tips on using images .. Below is a example of a Mikrotik switch with connector points.
Use a search engine to look for images, the ones with front facing connectors are easier to use. I always look for images which have a transparent background. Using google you can use below ‘trick’ google > images > tools > color > transparent Just copy-paste into your DrawIO document, it is better to have a large picture which you can resize as the other way around.
Adding connection points:
Left click the image in DrawIO, right mouse and Edit connection points
Now you can place/remove edit connection points.
Due to security reasons i won’t be posting my complete network image ..
Another tip:
Network sheet a friend is working on
Device is not straight, so its harder to get the connections right. Besides that, the lines are below the device. Click line and select bring to front.
In this case designed for my 6502, but it is a generic setup.
I it just a dual 16key matrix decoder merged together. You can probably use this with raspberries, arduinos etc.
I wanted to use 74C923 but these are nowhere to be found. And even then, the number of keys wil be 20. So i am tying together two 74C922 using some logic in a PLD.
First draft
It wil be something like above. Using the data availabe signal i can combine both 16key matrixes. (In theory .. it is all untested)
Another blender project i’m planning to do this week is a movie displaying my logo to overlay on my videos. So i have to render a transparent movie for this.
Howto:
Open a scene, i took the liberty to get one from blenderkit.
Change output to cycles, eevee doesn’t work
Make x/y large enough in output tab. X = 2 * Y !
Next select your camera, and open camera tab
Change Type to panoramic and then you can change panorama type to Equirectangular
Position your camera and hit F12, it wil take a long time!
You get something like this
Use a proper plugin for your website, or view with your VR glasses!
New address decoder in place! Connected RAM/ROM/SID/VIA1/VIA2 and ACIA
ROM
8000-FFFF
SID
7000-700F (sound)
VIA1
6000-60xx (Hex key matrix)
ACIA
6800-68xx (serial)
VIA2
5000-50xx (led test at the moment)
RAM
0000-3FFF
To plan: Bigger maxtrix keyboard and other displays
ACIA 6551
Got a serial connection working between the 6502 and my linux machine!
3 line serial – no hardware handshake
At the moment when a reset occurs , hello is being printed. Text typed in the minicom terminal, is echo-ed back and displayed on the LCD display.
Things learned: Do not trust internet schematics blindly!
The crystal used for the ACIA (pin 6/7 1.8432Mhz needs a 1M ohm resistor parallel over the crystal, and a 30nF capacitor from pin 7 to GND
When using a terminal emulator, and using 3 wires. Disable hardware handshake.
Keyboard rewired.
What didn´t work as planned:
New amplifier schematic for the SID. There is too much noise.
Amplifier with a LM628
Bought a dual power supply (5V and 12V). But this one has a lot of signal noise on the SID part and even my battlestation speakers!
LED test 2nd via
PORTB = $5000 ; VIA PORTB
PORTA = $5001 ; VIA PORTA
DDRB = $5002 ; Data direction register
DDRA = $5003 ; Data direction register
LED = %10000000
.org $8000
reset:
lda #%11100000 ; Set top 3 pins on port A to output
sta DDRA
lda LED
sta PORTA
loop: ; done loop until doomsday
jmp loop
irq:
nmi:
.org $fffa
.word nmi
.word reset
.word irq
ACIA part
ACIA_RX = $6800
ACIA_TX = $6800
ACIA_STATUS = $6801
ACIA_COMMAND = $6802
ACIA_CONTROL = $6803
lda #$00
sta ACIA_STATUS
lda #$0b
sta ACIA_COMMAND
lda #$1f
sta ACIA_CONTROL
I was using zevv’s bucklespring way back since he was beta testing. https://github.com/zevv/bucklespring
Also cool-retro-term, i used whenever i felt nostalgic.
But both at the same time, how much fun is that!
(Both newly installed on my laptop, which i had to reinstall, because i f*cked it up beyond repair. installing openxr stuff. OpenXR is an open, royalty-free standard for access to virtual reality and augmented reality platforms and devices. )
"If something is worth doing, it's worth overdoing."