Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fluffd/fluffd.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// System: HTTP server and Bluetooth Low Energy Library
const winston = require("./logger");
const noble = require("noble");
const noble = require("@abandonware/noble");
Copy link
Copy Markdown

@ffontaine ffontaine Nov 19, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this PR, it helped me a lot to make it work on a RPi 4.
However, it should be noted that package.json must also be updated:

	"dependencies": {
		"@abandonware/noble": "1.9.2-10",

const http = require("http");

// Project
Expand Down
6 changes: 6 additions & 0 deletions util/namer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
prefexname = ['Ah', 'Bee', 'Dah', 'Day', 'Dee', 'Doo', 'Key', 'Loo', 'May',
'Noo', 'Tay', 'Toh', 'Way']
suffexname = ['Bay', 'Boh', 'Boo', 'Dah', 'Doh', 'Doo', 'Kah', 'Koh', 'Tah',
'Toh']
namep1 = set(prefexname)
namep2 = set(suffexname)