Add RN42 Bluetooth module support
Added support for sending HID keycodes over the RN42/reflashed HC05 module. Tested on OS X and iOS.
This commit is contained in:
		
							parent
							
								
									942f2ccee4
								
							
						
					
					
						commit
						71da013995
					
				
					 4 changed files with 43 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -606,6 +606,13 @@ static void send_keyboard(report_keyboard_t *report)
 | 
			
		|||
  if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
 | 
			
		||||
    #ifdef MODULE_ADAFRUIT_BLE
 | 
			
		||||
      adafruit_ble_send_keys(report->mods, report->keys, sizeof(report->keys));
 | 
			
		||||
    #elif MODULE_RN42
 | 
			
		||||
       bluefruit_serial_send(0xFD);
 | 
			
		||||
       bluefruit_serial_send(0x09);
 | 
			
		||||
       bluefruit_serial_send(0x01);
 | 
			
		||||
       for (uint8_t i = 0; i < KEYBOARD_EPSIZE; i++) {
 | 
			
		||||
         bluefruit_serial_send(report->raw[i]);
 | 
			
		||||
       }
 | 
			
		||||
    #else
 | 
			
		||||
      bluefruit_serial_send(0xFD);
 | 
			
		||||
      for (uint8_t i = 0; i < KEYBOARD_EPSIZE; i++) {
 | 
			
		||||
| 
						 | 
				
			
			@ -726,6 +733,16 @@ static void send_consumer(uint16_t data)
 | 
			
		|||
    if (where == OUTPUT_BLUETOOTH || where == OUTPUT_USB_AND_BT) {
 | 
			
		||||
      #ifdef MODULE_ADAFRUIT_BLE
 | 
			
		||||
        adafruit_ble_send_consumer_key(data, 0);
 | 
			
		||||
      #elif MODULE_RN42
 | 
			
		||||
        static uint16_t last_data = 0;
 | 
			
		||||
        if (data == last_data) return;
 | 
			
		||||
        last_data = data;
 | 
			
		||||
        uint16_t bitmap = CONSUMER2RN42(data);
 | 
			
		||||
        bluefruit_serial_send(0xFD);
 | 
			
		||||
        bluefruit_serial_send(0x03);
 | 
			
		||||
        bluefruit_serial_send(0x03);
 | 
			
		||||
        bluefruit_serial_send(bitmap&0xFF);
 | 
			
		||||
        bluefruit_serial_send((bitmap>>8)&0xFF);
 | 
			
		||||
      #else
 | 
			
		||||
        static uint16_t last_data = 0;
 | 
			
		||||
        if (data == last_data) return;
 | 
			
		||||
| 
						 | 
				
			
			@ -1132,7 +1149,7 @@ int main(void)
 | 
			
		|||
    // midi_send_noteoff(&midi_device, 0, 64, 127);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef MODULE_ADAFRUIT_EZKEY
 | 
			
		||||
#if defined(MODULE_ADAFRUIT_EZKEY) || defined(MODULE_RN42)
 | 
			
		||||
    serial_init();
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue