18 lines
		
	
	
	
		
			438 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
	
		
			438 B
			
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | <!DOCTYPE html> | ||
|  | <html> | ||
|  |   <head> | ||
|  |     <meta charset="UTF-8"> | ||
|  |     <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'"> | ||
|  |     <title>Web Bluetooth API</title> | ||
|  |   </head> | ||
|  |   <body> | ||
|  |     <h1>Web Bluetooth API</h1> | ||
|  | 
 | ||
|  |     <button id="clickme">Test Bluetooth</button> | ||
|  | 
 | ||
|  |     <p>Currently selected bluetooth device: <strong id="device-name""></strong></p> | ||
|  | 
 | ||
|  |     <script src="./renderer.js"></script> | ||
|  |   </body> | ||
|  | </html> |