Recent Posts

Pages: [1] 2 3 4 5 6 ... 10 Next
1
Test Equipment / Re: Siglent SDS2000X Plus Hack
« Last post by Vertical Loop on Today at 01:52:29 am »
Updated script. Easier to read, no capital keys, added some comments. Worked for me still.

```
import hashlib

# Scope identification found in the system info tab
# to find this, touch the utility tab on the top left of the SDS screen.
# The dropdown will have a "Menu" option. This will open a dropdown on the right,
# select the (i) System Info from the dropdown.

# The "Scope ID:" hosts this variable. Remove the hyphens and keep the value lowercase.
SCOPEID = 'agy4mj75hf6jnd52'


# The model is a generic variable, not a specific model number, in this case the SDS2000X+,
Model   = 'SDS2000X+'

bwopt = ('100M', '200M', '350M', '500M', 'AWG', 'MSO', 'FLX', 'CFD', 'I2S', '1553', 'PWA', 'MANC', 'SENT')

hashkey = '5zao9lyua01pp7hjzm3orcq90mds63z6zi5kv7vmv3ih981vlwn06txnjdtas3u2wa8msx61i12ueh14t7kqwsfskg032nhyuy1d9vv2wm925rd18kih9xhkyilobbgy'

def gen(x):
   h = hashlib.md5(
      (
      hashkey + (Model+'\n').ljust(32, '\x00') + opt.ljust(5, '\x00') +2*((SCOPEID + '\n').ljust(32, '\x00')) +
      '\x00'*16).encode('ascii')
   ).digest()
   key = ''
   for index, b in enumerate(h):
      if (b <= 0x2F or b > 0x39) and (b <= 0x60 or b > 0x7A):
         m = b % 0x24
         b = m + (0x57 if m > 9 else 0x30)
      if b == 0x30: b = 0x32
      if b == 0x31: b = 0x33
      if b == 0x6c: b = 0x6d
      if b == 0x6f: b = 0x70
      # every four characters print a space
      if index and index % 4 == 0:
        key += " "
      key += chr(b)
   return key
   
for opt in bwopt:
   print(f'{opt}: {gen(SCOPEID)}\n')
```



2
General Technical Chat / Re: Relay trigger when voltage above 13v
« Last post by Andy Chee on Today at 01:46:58 am »
I think you’re after a hysteresis circuit i.e. turn on relay as voltage rises above 13V, turn off relay as voltage drops below 12V.

Alternatively, perhaps you’re after a monostable “reset” circuit i.e. turn on relay as voltage rises above 13V, relay remains on until power is removed.
3
Projects, Designs, and Technical Stuff / Re: Corrosion on DIP pins
« Last post by rsjsouza on Today at 01:45:37 am »
Just an additional annoyance: MOSTEK is known nowadays to have a relatively high incidence of memory rot, which renders the IC unusable due to internal degradation even on ICs that are physically in good shape.

That's a problem with mask ROMs like the MK36000.  Aren't the ICs in the photo DRAMs?
I have seen DRAMs fail as well - you can also check a few of the vintage folks (Adrian's basement, 8-bit guy, etc.) comment this as well.
4
Bump, summer price 400 CAD
5
Test Equipment / Re: SDS800X HD Wanted Features
« Last post by electronics hobbyist on Today at 01:38:11 am »
I wonder how many use these buttons (see picture). You can move the fields by simply dragging them, so i would say these buttons are redundant. They would cover a field that you could otherwise click without moving the fields at all.

Dragging is implicit, while arrows are explicit, and also said that there is information on the left and right, I think this is part of the reasons for retaining the arrow.For first-time users or users of the mouse, this arrow is necessary.
6
Projects, Designs, and Technical Stuff / Re: HP 3478A ROM Dump
« Last post by fenugrec on Today at 01:32:29 am »
The second has an internal ROM.  I don't know if its readable with a programmer.

Yes, the analog-side 8049 has been dumped and is available from ko4bb.

+1 to comments by pqass and Kleinstein.

Without the ASIC magic , the rest of the hp3478a is non remarkable and IMO a waste of time to try and duplicate. You also do not want to be looking at, let alone writing, 8039/8049 firmware in 2024. I speak from experience

7
General Technical Chat / Re: Is LinkedIn worth keeping?
« Last post by Halcyon on Today at 01:31:19 am »
I tried to add Dave as a connection, very long time ago. But it's only famous celebrities that are "on the list" lol. Didn't make it.

I'm not even connected to Dave! My invite ended up expiring because he never uses it.
8
Beginners / Re: 555 driver and Transformer questions
« Last post by Andy Chee on Today at 01:23:34 am »
This context is most helpful and would’ve been appreciated in your first post!

So just to confirm, you’re seeking to build a replacement HT supply for a car valve radio operating from 6V system?

In other words, you’re not attempting to use this power supply to run a different HV device like a Tesla coil, taser gun, electric fence, or other?

So extra questions, are you just trying to replace the vibrator unit? Or the entire HV power supply?
9
Manufacturing & Assembly / Re: Fellow LPKF equipment users?
« Last post by rsaxvc on Today at 01:16:16 am »
I've noticed the local harbor freight tools carries 20-pack of what appear to be compatible 38mm carbide drill bits, up to 1.1mm diameter, $7. No testing yet.
10
RF, Microwave, Ham Radio / Re: fake MPF102s from AliExpress
« Last post by radiolistener on Today at 01:09:51 am »
almost all transistors on aliexpress are fake. It can be branded but remarked other type, old repackaged, or just custom made with unknown parameters.
Pages: [1] 2 3 4 5 6 ... 10 Next