mirror of
				https://github.com/hyperion-project/hyperion.ng.git
				synced 2025-03-01 10:33:28 +00:00 
			
		
		
		
	- More i18n - Easy use of mutual exclusion in JsonAPI with QMutexLocker - Smoothing type "linear" hidden in the WebUI, because there is currently only one - Message forwarding implemented again - For compatibility to home assistants and other remote controls, "activeEffects" and "activeLedColor" has been added to the JSON-RPC - FlatBuffer clear now the Priority on disconnect - The information "available V4L2 devices" is now only displayed if the device list is not empty - LED device "PiBlaster" excluded from OSX build
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
 | 
						|
// Utils includes
 | 
						|
#include <utils/Image.h>
 | 
						|
#include <utils/jsonschema/QJsonFactory.h>
 | 
						|
 | 
						|
// Hyperion includes
 | 
						|
#include <utils/hyperion.h>
 | 
						|
#include <hyperion/ImageToLedsMap.h>
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
	QString homeDir = getenv("RASPILIGHT_HOME");
 | 
						|
 | 
						|
	const QString schemaFile = homeDir + "/hyperion.schema.json";
 | 
						|
	const QString configFile = homeDir + "/hyperion.config.json";
 | 
						|
 | 
						|
	QJsonObject config;
 | 
						|
	if (QJsonFactory::load(schemaFile, configFile, config) < 0)
 | 
						|
	{
 | 
						|
		std::cerr << "UNABLE TO LOAD CONFIGURATION" << std::endl;
 | 
						|
		return -1;
 | 
						|
	}
 | 
						|
 | 
						|
	const LedString ledString = hyperion::createLedString(config["leds"].toArray(), hyperion::createColorOrder(config["device"].toObject()));
 | 
						|
 | 
						|
	const ColorRgb testColor = {64, 123, 12};
 | 
						|
 | 
						|
	Image<ColorRgb> image(64, 64, testColor);
 | 
						|
	hyperion::ImageToLedsMap map(64, 64, 0, 0, ledString.leds());
 | 
						|
 | 
						|
	std::vector<ColorRgb> ledColors(ledString.leds().size());
 | 
						|
	map.getMeanLedColor(image, ledColors);
 | 
						|
 | 
						|
	std::cout << "[";
 | 
						|
	for (const ColorRgb & color : ledColors)
 | 
						|
	{
 | 
						|
		std::cout << color;
 | 
						|
	}
 | 
						|
	std::cout << "]" << std::endl;
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |