Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /**
* Base interface for analog input sources for the BBC Micro's ADC
* @abstract
*/
export class AnalogueSource {
/**
* Get the current value for the specified channel
* @param {number} channel - The ADC channel (0-3)
* @returns {number} A value between 0 and 0xffff
*/
getValue(_channel) {
throw new Error("Method not implemented");
}
/**
* Clean up resources when source is no longer needed
*/
dispose() {
// Optional cleanup method
}
}
|