lower bell volume (i know, yeah... picky)

box-drawing
Ondřej Hruška 7 years ago
parent 8e513cbb70
commit 7ddc64ff01
Signed by: MightyPork
GPG Key ID: 2C5FD5035250423D
  1. 4
      _debug_replacements.php
  2. 4
      js/term/screen.js

@ -63,7 +63,7 @@ return [
'githubrepo' => 'https://github.com/espterm/espterm-firmware',
'githubrepo_front' => 'https://github.com/espterm/espterm-front-end',
'hash_backend' => $fwHash,
'hash_frontend' => GIT_HASH, // TODO actual versions?
'hash_frontend' => GIT_HASH,
'ap_dhcp_time' => '120',
'ap_dhcp_start' => '192.168.4.100',
@ -91,6 +91,6 @@ return [
'uart_parity' => 2,
'theme' => 0,
'pwlock' => 1,
'pwlock' => 0,
'access_name' => 'espterm',
];

@ -543,7 +543,7 @@ module.exports = class TermScreen extends EventEmitter {
const mainOsc = audioCtx.createOscillator()
const mainGain = audioCtx.createGain()
mainOsc.connect(mainGain)
mainGain.gain.value = 6
mainGain.gain.value = 4
mainOsc.frequency.value = 750
mainOsc.type = 'sine'
@ -551,7 +551,7 @@ module.exports = class TermScreen extends EventEmitter {
const surrOsc = audioCtx.createOscillator()
const surrGain = audioCtx.createGain()
surrOsc.connect(surrGain)
surrGain.gain.value = 4
surrGain.gain.value = 2
surrOsc.frequency.value = 400
surrOsc.type = 'sine'

Loading…
Cancel
Save