2 Commits 51900851c4 ... 3bcbde514c

Author SHA1 Message Date
  The MMGen Project 3bcbde514c add LED support for Orange Pi 5 11 months ago
  The MMGen Project d3f55c2510 support Bitcoin Core v28.1 11 months ago
2 changed files with 6 additions and 1 deletions
  1. 5 0
      mmgen/led.py
  2. 1 1
      mmgen/proto/btc/daemon.py

+ 5 - 0
mmgen/led.py

@@ -41,6 +41,11 @@ class LEDControl:
 			status  = '/sys/class/leds/orangepi:red:status/brightness',
 			trigger = None,
 			trigger_states = None),
+		'orange_pi_5': binfo(
+			name    = 'Orange Pi 5 (Armbian)',
+			status  = '/sys/class/leds/status_led/brightness',
+			trigger = None,
+			trigger_states = None),
 		'rock_pi': binfo(
 			name    = 'Rock Pi (Armbian)',
 			status  = '/sys/class/leds/status/brightness',

+ 1 - 1
mmgen/proto/btc/daemon.py

@@ -19,7 +19,7 @@ from ...util import list_gen
 from ...daemon import CoinDaemon, _nw, _dd
 
 class bitcoin_core_daemon(CoinDaemon):
-	daemon_data = _dd('Bitcoin Core', 280000, '28.0.0')
+	daemon_data = _dd('Bitcoin Core', 280100, '28.1.0')
 	exec_fn = 'bitcoind'
 	cli_fn = 'bitcoin-cli'
 	testnet_dir = 'testnet3'