Merge branch 'Stocks' of github.com:ChuckBuilds/LEDMatrix into Stocks

This commit is contained in:
ChuckBuilds
2025-04-11 11:19:42 -05:00
3 changed files with 9 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ class StockNewsManager:
self.cached_text_image = None # Cache for the text image self.cached_text_image = None # Cache for the text image
self.cached_text = None # Cache for the text string self.cached_text = None # Cache for the text string
# Get scroll settings from config with faster defaults # Get scroll settings from config with faster defaults
self.scroll_speed = self.stock_news_config.get('scroll_speed', 1) self.scroll_speed = self.stock_news_config.get('scroll_speed', 1)
self.scroll_delay = self.stock_news_config.get('scroll_delay', 0.001) # Default to 1ms instead of 50ms self.scroll_delay = self.stock_news_config.get('scroll_delay', 0.001) # Default to 1ms instead of 50ms
@@ -218,6 +219,7 @@ class StockNewsManager:
text_width = self.cached_text_image.width text_width = self.cached_text_image.width
text_height = self.cached_text_image.height text_height = self.cached_text_image.height
display_width = self.display_manager.matrix.width display_width = self.display_manager.matrix.width
total_width = text_width + display_width total_width = text_width + display_width

View File

@@ -10,7 +10,9 @@ print(f"Current working directory: {os.getcwd()}")
def main(): def main():
"""Test the StockNewsManager class directly.""" """Test the StockNewsManager class directly."""
display_manager = None display_manager = None
try: try:
# Load configuration # Load configuration
config_manager = ConfigManager() config_manager = ConfigManager()
@@ -28,11 +30,13 @@ def main():
# Initialize display manager # Initialize display manager
display_manager = DisplayManager(display_config) display_manager = DisplayManager(display_config)
# Clear the display and show a test pattern # Clear the display and show a test pattern
display_manager.clear() display_manager.clear()
display_manager.update_display() display_manager.update_display()
time.sleep(1) # Give time to see the test pattern time.sleep(1) # Give time to see the test pattern
# Initialize news manager with the loaded config # Initialize news manager with the loaded config
news_manager = StockNewsManager(config, display_manager) news_manager = StockNewsManager(config, display_manager)
@@ -54,6 +58,7 @@ def main():
display_manager.clear() display_manager.clear()
display_manager.update_display() display_manager.update_display()
display_manager.cleanup() display_manager.cleanup()
print("Test completed") print("Test completed")
if __name__ == "__main__": if __name__ == "__main__":