Blame

9a504f Peter van Dijk 2026-02-25 20:36:11 1
# Nebra Indoor Miner
2
3
first generation, Pi3 CM based.
4
2 USB, 1 miniPCIe with exactly enough pins for SX1262.
5
6
[schematic](https://github.com/NebraLtd/nebra-lora-hardware/blob/master/Smart-Indoor-Mainboard-V1/HARDWARE/indoor-schematic.pdf)
7
8
## working SPI pymc setup
9
10
```python
11
"bus_id": 1,
12
"cs_id": 0,
13
"cs_pin": 24,
14
"reset_pin": 38,
15
"busy_pin": 32,
16
"irq_pin": 33,
17
"txen_pin": -1,
18
"frequency": int(869.618 * 1000000), # EU: 869.525 MHz,
19
"tx_power": 22,
20
"spreading_factor": 8,
21
"bandwidth": int(62.5 * 1000),
22
"coding_rate": 8,
23
"preamble_length": 17,
24
"use_dio3_tcxo": True
25
```
26
27
miniPCIe pins:
28
3f90b8 Peter van Dijk 2026-02-25 22:57:33 29
* SPI (MISO/MOSI/SCLK/CS in that order) on 47/49/45/51
9a504f Peter van Dijk 2026-02-25 20:36:11 30
* RST on 22
31
* BUSY on 31
32
* DIO1/IRQ on 33