Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add observer type that observes Wii Remote search in a more clean way #61

Open
awvalenti opened this issue Aug 23, 2017 · 0 comments
Open

Comments

@awvalenti
Copy link
Owner

On Linux, demos LEDs and Vibration don't report anything until connected. They should. Currently, only way to do this would be using this type of observer, which would be too clumsy:

				.onLifecycleEvents(new CoronataLifecycleEventsObserver() {
					
					@Override
					public void wiiRemoteIdentified() {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void searchStarted() {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void searchFinished() {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void libraryLoaded() {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void errorOccurred(CoronataException e) {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void disconnected() {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void deviceRejectedIdentification(String address,
							String deviceClass) {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void deviceIdentifiedAsNotWiiRemote(String address,
							String deviceClass) {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void coronataStarted() {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void connected(CoronataWiiRemote wiiRemote) {
						// TODO Auto-generated method stub
						
					}
					
					@Override
					public void bluetoothDeviceFound(String address, String deviceClass) {
						// TODO Auto-generated method stub
						
					}
				})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant