Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit 75114d1

Browse files
committed
Using example.firebase placeyholders everywhere
1 parent 9a25d9b commit 75114d1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/FirebaseNeoPixel_ESP8266/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ FirebaseNeoPixel is a sample that shows how to set pixel data from a Firebase we
4040
1. Select the upload speed `Upload Speed > 115200`
4141
1. Click `Sketch > Upload`
4242
1. Open `public/index.html` with a text editor
43-
1. Replace `yourproject.firebaseio.com` with the `Firebase Hostname` used for configuring the Arduino project.
44-
1. Replace `yourproject.firebaseapp.com` with the `Firebase Domain` from hosting tab of the Firebase Console.
43+
1. Replace `example.firebaseio.com` with the `Firebase Hostname` used for configuring the Arduino project.
44+
1. Replace `example.firebaseapp.com` with the `Firebase Domain` from hosting tab of the Firebase Console.
4545
1. Replace `secret_or_token` with the `Firebase Secret` used to configure the Arduino project.
4646
1. Deploy the `public` directory to Firebase hosting
4747
```
@@ -54,7 +54,7 @@ firebase deploy
5454

5555
## Play
5656

57-
1. Go to the firebase hosting URL: `yourproject.firebaseapp.com`.
57+
1. Go to the firebase hosting URL: `example.firebaseapp.com`.
5858
1. Initialize the pixel data by copying / pasting example pixel data from the page and clicking **Update**.
5959
1. Use the color picker and paint the NeoPixel table.
6060
1. Watch the NeoPixel being updated to the matching color.

examples/FirebaseNeoPixel_ESP8266/public/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
</head>
2424
<script>
2525
// NOTICE: Retrieve these values from the Firebase console to run the sample.
26-
var firebaseDb = 'yourproject.firebaseio.com';
27-
var firebaseAuthDomain = 'yourproject.firebaseapp.com';
28-
var firebaseApiKey = 'your_api_key';
26+
var firebaseDb = 'example.firebaseio.com';
27+
var firebaseAuthDomain = 'example.firebaseapp.com';
28+
var firebaseApiKey = 'token_or_secret';
2929
</script>
3030
<body>
3131
<h2>Paint Demo</h3>

0 commit comments

Comments
 (0)