2025年4月3日木曜日

RasPicoWのmicropythonでfirebase-rtdb(https!)

10秒ごとにfirebase-rtdbに.jsonで内容をとりにいく(firestoreではできん芸当)

firebase-rtdbはロックモードにすれば自分だけがデータ操作できるので割と安全かも! 

import network

import urequests #httpsがgetできる!

import time


# Wi-Fi接続

ssid = ""

password = ""


wlan = network.WLAN(network.STA_IF)

wlan.active(True)

wlan.connect(ssid, password)


while not wlan.isconnected():

    pass

led= machine.Pin('LED', machine.Pin.OUT)

print("Connected to Wi-Fi")

while True:

 # HTTPS GETリクエスト

 url = "https://firestore-test-88b23-default-rtdb.firebaseio.com/.json"

 response = urequests.get(url)

 data = response.json()

 print(data["led"])

 if data["led"]=="on":

     led.on()

 else:

     led.off()

 time.sleep(10)

 response.close()



2025年3月31日月曜日

firebase v9以上で文法変更あり

 https://qiita.com/kiyopikko/items/f1da74f4f921ea778a61 :: 

Firebase JS SDK v9 へのアップデート備忘録

https://coconala.com/blogs/1638666/135318?srsltid=AfmBOor4AMbFk56aEsdeZk1-dOF6WJJwQr43MQTLdPVpsIQjNK3EGTob  ;; 上におなじ

<html><head>

<script type="module">

  // Import the functions you need from the SDKs you need

  import { initializeApp } from "https://www.gstatic.com/firebasejs/11.5.0/firebase-app.js";

  import { getAnalytics } from "https://www.gstatic.com/firebasejs/11.5.0/firebase-analytics.js";

  // TODO: Add SDKs for Firebase products that you want to use

  // https://firebase.google.com/docs/web/setup#available-libraries

  import { getDatabase,ref,onValue} from "https://www.gstatic.com/firebasejs/11.5.0/firebase-database.js";

  // Your web app's Firebase configuration

  // For Firebase JS SDK v7.20.0 and later, measurementId is optional

  const firebaseConfig = {

    apiKey: "AIzaSyCcIW92ehZDJSAAJylBZGeeviyYtCPqous",

    authDomain: "my-nodejs-e9414.firebaseapp.com",

    databaseURL: "https://my-nodejs-e9414-default-rtdb.firebaseio.com",

    projectId: "my-nodejs-e9414",

    storageBucket: "my-nodejs-e9414.firebasestorage.app",

    messagingSenderId: "64417285110",

    appId: "1:64417285110:web:41cac867f805aec2c07dd7",

    measurementId: "G-K0E78VTKBB"

  };

  // Initialize Firebase

  const app = initializeApp(firebaseConfig);

  const analytics = getAnalytics(app);


  var database = getDatabase(app);

  var people = ref(database, 'people/');

  onValue(people, (snapshot) => {

     const data = snapshot.val();

  console.log(data);

 });

</script>

</head>

<body> 

<h1>latest datas</h1>

<ol id="list">wait...</ol>

</body>

</html>

2025年3月30日日曜日

websocket 他の技術もあわせて

 


https://qiita.com/kbys-fumi/items/a62dfa6f8baf81ff9cc5

【初心者向け】リアルタイム通信を実現するための手段をまとめる

polling,long-polling(comet),server-sent-events,wobsoketの4種類!最後がポピュラー
---------serverをnode.jsとして、clientはhtmlに埋め込む(wsモジュール編)------------------
https://www.tohoho-web.com/ex/websocket.html#sample_with_ws

ws と Socket.IO の違い wsのほうがビルトインで簡便

  • WebSocket はブラウザに標準で組み込まれていますが、Socket.IO はライブラリを読み込む必要があります。
  • ws は WebSocket を利用しますが、Socket.IO は WebSocket 以外に AJAX Long PollingAJAX MultipartStream などにも対応します。
  • ws が全クライアントに送信するにはクライアントの台数分ループを回す必要がありますが、Socket.IO は1回の操作で全クライアントに送信することができます。
  • ws はデータをそのまま送信しますが、Socket.IO は socket.emit() の第1引数にイベント名をつけて送信することができます。

---------------------------------------------------------------------------------------------

server/client both  nodejs version ------------server---------

const WebSocket = require('ws');

const server = new WebSocket.Server({ port: 8080 });


// server クライアントから接続される場合トリガーされる

server.on('connection', (socket) => {

  console.log('Client connected');


  // 受信メッセージを処理

  socket.on('message', (data) => {

    console.log(`Received: ${data}`);

    // ここでメッセージの処理ロジックを追加

  });


  // 接続中止

  socket.on('close', () => {

    console.log('Client disconnected');

  });

});

ーーーーー client ーーーーーー

const WebSocket = require("ws");

const readline = require('readline');


// WebSocketクライアントを作成してサーバーに接続

const socket = new WebSocket('ws://localhost:8080');


// 接続ができた時にトリガーされる

socket.onopen = () => {

  console.log('Connected to server');

  const rl = readline.createInterface({

    input: process.stdin,

    output: process.stdout,

  });


  // コマンドラインを利用してメッセージをサーバーに送信

  rl.on('line', (input) => {

    // 入力したメッセージを送信

    socket.send(input);

  });

};


// サーバーのメッセージが受信された時にトリガーされる

socket.onmessage = (event) => {

  console.log(`Received: ${event.data}`);

};


// 接続中止

socket.onclose = () => {

  console.log('Connection closed');

};

2025年3月27日木曜日

nodejs:: http-server / firebase-hosting (or fc2) & firebase-rtdb

 https://snowsystem.net/development/web-server-simple-launch/

-----------------------------------------------------------------------------------

https://qiita.com/beeytnh/items/0c0114e92e0a98d3070d で公開サイトを作成できた

つぎはこれをesp8266でget...... ただしラズパイでないとnode.jsが古くてhostingあかーん

https://qiita.com/hiroyuki7/items/2f74105d9d0298ac317aで以下の古いライブラリで

成功した onメソッドにてリアルタイム更新表示となっている

<html><head><script src="https://www.gstatic.com/firebasejs/4.1.3/firebase.js">

// このjsは全部入の巨大ファイル

 </script>

<script> 

//  ここからfirebaseのsettingをコピペ

   const firebaseConfig = {

    apiKey: "AIzaSyCcIW92ehZDJSAAJylBZGeeviyYtCPqous",

    authDomain: "my-nodejs-e9414.firebaseapp.com",

    databaseURL: "https://my-nodejs-e9414-default-rtdb.firebaseio.com",

    projectId: "my-nodejs-e9414",

    storageBucket: "my-nodejs-e9414.firebasestorage.app",

    messagingSenderId: "64417285110",

    appId: "1:64417285110:web:41cac867f805aec2c07dd7",

    measurementId: "G-K0E78VTKBB"

  }; 

// ここまで

  firebase.initializeApp(firebaseConfig);

  var databse = firebase.database();

  var people = databse.ref('people/');

  people.on('value', (snapshot) => {

      let data = snapshot.val();

      let result = "";

      for(let i in data){

        let person = data[i];

        result += '<li>' + person.name + '[' + person.mail + ',' + person.age + '歳]';

      }

      document.querySelector('#list').innerHTML = result;

      });  

</script>

</head>

<body> 

<h1>latest datas</h1>

<ol id="list">wait...</ol>

</body>

</html>

2025年3月26日水曜日

Kaluma-js-raspicow(ds1307,dht,ssd1306-simplefont,mqtt)

基本使用法

kaluma flash ./index.js --bundle and in kaluma shell  type .load 

----------------------ds1307RTC------i2cはビルトイン-------------

ds1307パッケージのsda,sclはどこにも記載がないがsda1,scl1(gpio2,gpio3)で成功!

bus電圧は5v必須だった!


const { I2C } = require('i2c');

const DS1307 = require('ds1307');


const i2c = new I2C(1, { mode: I2C.MASTER });

const ds1307 = new DS1307(i2c);

const date = new Date('2022-09-04T17:01:48.026Z');

ds1307.setDate(date);


setInterval(() => {

  console.log(ds1307.getDate().toISOString());

}, 1000)


-------------dht11-------------------------------------------------------

https://javascript.plainenglish.io/physical-computing-with-javascript-5-8-sensing-temperature-and-humidity-2040eb1d20e9 にしたがいdht11をうごかす

$ mkdir dht11-test
$ cd dht11-test
$ npm init -y

$ npm install https://github.com/niklauslee/dht --save

これでnode_modulesにdhtができる 本文から改変

const pin = 15;

const {DHT} = require('dht'); // @kaluma/不要

const dht = new DHT(pin, DHT.DHT11);

let result = dht.read();

if (result) {

  console.log(result);

  console.log("Humidity: " + dht.humidity + " %");

  console.log("Temperature: " + dht.temperature + " C");

} else {

  console.log('Failed to read');

}

このindex.jsを以下のようにしてflash(DHTもバンドルされる) --portはlinuxでは不要

$ kaluma flash ./index.js --port <port> --bundle

あとはkaluma shellで.loadとすればOK
----------ssd1306 and simplefont---------------------------------------------------
https://kalumajs.org/packages/ のバッケージで ssd1306をインスト

const {SSD1306}=require('ssd1306/i2c'); const {I2C} = require('i2c'); const ssd1306 = new SSD1306(); let i2c0 = new I2C(0); ssd1306.setup(i2c0,{width:128, height:64}); const gc = ssd1306.getContext(); gc.drawRect(0,0,128,64); gc.display();

同一ディレクトリにsimplefontパッケージもインスト 

const {SSD1306} = require('ssd1306/i2c');
const ssd1306 = new SSD1306();
ssd1306.setup(board.i2c(0), {
  width: 128,
  height: 64  
});
var font = require('simple-fonts/minimal');
// var font = require('simple-fonts/leros');
// var font = require('simple-fonts/yamaha');
// var font = require('simple-fonts/lee-sans');

const gc = ssd1306.getContext();
gc.setFont(font);
gc.drawText(0, 0, "LOREM IPSUM DOLOR SIT AMET...");
gc.display();
--------------mqtt---------------raspicow にはwifiがビルトイン!--------------------------
https://github.com/pankleks/picomqtt/blob/main/example.js を参考にした

const   WiFi = require("wifi").WiFi,{ PicoMQTT } = require("picomqtt/picomqtt.min");

 //ここがキモ,ビルトインwifiの中でPicoMQTTをode_modulesによびに行く

const wifi = new WiFi();


wifi.connect({ ssid: "HUAWEI@nova@lite@3+", password: "99991111" }, (ex) => {
  if (ex)
    console.error(ex);
  else {
    console.log("wifi connected");

    const mqtt = new PicoMQTT("broker.emqx.io", { clientId: board.uid });

    mqtt.on("connected", () => {
      console.log("mqtt connected");
      
      mqtt.subscribe("test/topic");

      mqtt.publish("test/topic", "you should get this");

      mqtt.publish("test/topic", "you should also get this");

      mqtt.unsubscribe("test/topic");

      mqtt.publish("test/topic", "you should not get this");
    });

    mqtt.on("message", (msg) => {
      console.log(`mqtt message -> ${msg.topic}: ${msg.message}`);
    });

    mqtt.on("error", (ex) => {
      console.log(`mqtt error -> ${ex.message || ex}`);
    });

    mqtt.on("disconnected", (reconnect) => {
      console.log(`mqtt disconnected, reconnect = ${reconnect}`);
  // if reconnect is true, mqtt will try to reconnect
    });

    mqtt.connect();

    setTimeout(() => {
      mqtt.disconnect();  // stop mqtt
    }, 1000 * 120);
  }
});

2025年3月24日月曜日

Johnny-five-uno:: wifi only / firebase-rtdb(old v?)でledonoff成功


https://hollywis.hatenablog.com/entry/2016/03/25/191147 

:: IoT的にJohnny-fiveでLED制御する! 非遠隔版

----------------遠隔版------------------------------------------------------

https://zenn.dev/protoout/articles/28-firebase-realtimedb-nodejs 

をもとにしているがref.onceでは一回処理になるのでref.onに変更している

 var admin = require("firebase-admin");

const { Board, Led } = require("johnny-five");

const board = new Board();

board.on("ready", () => { // この枠内でのみled制御可能

  const led = new Led(12);

  // よって以下のfirebase要素を組み込む

  // 1. サービスアカウント鍵を生成しserviceAccountKey.jsonで

  //  リネームしてfirebaseフォルダ直下に配置

  var serviceAccount = require("./serviceAccountKey.json");

  admin.initializeApp({

    credential: admin.credential.cert(serviceAccount),

  // 2. Realtime DatabaseのページでdatabaseURLを確認して反映

    databaseURL: "https://my-nodejs-e9414-default-rtdb.firebaseio.com"

  });

  var db = admin.database();

  var refSensor = db.ref("protoout/studio/sensor");

  refSensor.on('value', function(snapshot){  // このonでデータ変更をリアルタイムに反映

console.log('value', snapshot.val());

//console.log(typeof snapshot.child("humidity").val());//return number

if (snapshot.child("humidity").val()>=50)

  { 

  led.on(); 

  }

else 

  {

  led.off();

          }

 });

});

2025年3月20日木曜日

Nodejs :: onoff-module / firebase-rtdb / mqtt.js

https://qiita.com/ekzemplaro/items/3a982b259db4b1cf19ad :: onoff lib for raspi

------------------------------------------------------------------------------------------

https://zenn.dev/protoout/articles/28-firebase-realtimedb-nodejs :: data_once仕様

リアルタイムサーバ的にうごかすに以下のようにする

var admin = require("firebase-admin");

// 1. サービスアカウント鍵を生成しserviceAccountKey.jsonでリネームしてfirebaseフォルダ直下に配置

var serviceAccount = require("./serviceAccountKey.json");


admin.initializeApp({

  credential: admin.credential.cert(serviceAccount),

  // 2. Realtime DatabaseのページでdatabaseURLを確認して反映

    databaseURL: "https://my-nodejs-e9414-default-rtdb.firebaseio.com"

});


var db = admin.database();

var refSensor = db.ref("protoout/studio/sensor");

refSensor.on('value',function(dataSnapshot) {

    console.log('refSensor');

    console.log(dataSnapshot.toJSON());

    console.log(dataSnapshot.child("humidity").val());   

  });

ーーーーーーーーーーmqtt.jsーーーーーーーーーーーーーーーーーー

https://qiita.com/emqx_japan/items/d1b9708d7f7f6a2d7284 にあるコードで成功

mqttxでtopicsを/nodejs/mqttとして"on"などを送れる

const mqtt = require('mqtt') const host = 'broker.emqx.io' const port = '1883' const clientId = `mqtt_${Math.random().toString(16).slice(3)}` const connectUrl = `mqtt://${host}:${port}` const client = mqtt.connect(connectUrl, { clientId, clean: true, connectTimeout: 4000, username: 'emqx', password: 'public', reconnectPeriod: 1000, }) const topic = '/nodejs/mqtt' client.on('connect', () => { console.log('Connected') client.subscribe([topic], () => { console.log(`Subscribe to topic '${topic}'`) client.publish(topic, 'nodejs mqtt test', { qos: 0, retain: false }, (error) => { if (error) { console.error(error) } }) }) })

client.on('message', (topic, payload) => { console.log('Received Message:', topic, payload.toString()) })